Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
imamiya-masaki committed Dec 7, 2024
1 parent 460707d commit a1d55da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/app/components/hooks/use-emulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit a1d55da

Please sign in to comment.