From a1d55da85b1853dff3ba5fa37f551c4b88cbc68e Mon Sep 17 00:00:00 2001 From: imamiya-masaki Date: Sat, 7 Dec 2024 22:19:38 +0900 Subject: [PATCH] fmt --- frontend/app/components/hooks/use-emulator.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/app/components/hooks/use-emulator.ts b/frontend/app/components/hooks/use-emulator.ts index 3e6120c9..81ae21d3 100644 --- a/frontend/app/components/hooks/use-emulator.ts +++ b/frontend/app/components/hooks/use-emulator.ts @@ -167,7 +167,8 @@ export const useEmulator = () => { if (!ride_id || !currentCoordinate || status !== "MATCHING") return; const abortController = new AbortController(); const timeoutId = setTimeout( - () => void postEnroute(ride_id, currentCoordinate, abortController.signal), + () => + void postEnroute(ride_id, currentCoordinate, abortController.signal), 1000, ); return () => {