diff options
| author | 2026-03-29 01:19:25 +0800 | |
|---|---|---|
| committer | 2026-03-29 01:19:25 +0800 | |
| commit | 397cbb34b327a0addfdf8e36f859b456956b66fe (patch) | |
| tree | 81d5c51437ddcbe49cc8023151956cba7b909da8 /packages/ui/src/pages/home-view.tsx | |
| parent | e16320b34fa2dbb75e19142f7e8e31ecd41a512c (diff) | |
| download | DropOut-397cbb34b327a0addfdf8e36f859b456956b66fe.tar.gz DropOut-397cbb34b327a0addfdf8e36f859b456956b66fe.zip | |
fix(lint): apply ui code lint
Diffstat (limited to 'packages/ui/src/pages/home-view.tsx')
| -rw-r--r-- | packages/ui/src/pages/home-view.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/ui/src/pages/home-view.tsx b/packages/ui/src/pages/home-view.tsx index 6060370..da7238f 100644 --- a/packages/ui/src/pages/home-view.tsx +++ b/packages/ui/src/pages/home-view.tsx @@ -32,20 +32,20 @@ export function HomeView() { const handleSaturnTouchStart = (e: React.TouchEvent) => { if (e.touches && e.touches.length === 1) { - const clientX = e.touches[0].clientX; - saturn?.handleTouchStart(clientX); + const clientX = e.touches[0].clientX; + saturn?.handleTouchStart(clientX); } }; const handleSaturnTouchMove = (e: React.TouchEvent) => { if (e.touches && e.touches.length === 1) { - const clientX = e.touches[0].clientX; - saturn?.handleTouchMove(clientX); + const clientX = e.touches[0].clientX; + saturn?.handleTouchMove(clientX); } }; const handleSaturnTouchEnd = () => { - saturn?.handleTouchEnd(); + saturn?.handleTouchEnd(); }; return ( |