Skip to content

Commit e987dc2

Browse files
committed
style: apply prettier formatting to usePendingRoute.ts
1 parent 5a85b7c commit e987dc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/hooks/usePendingRoute.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ const usePendingRoute = () => {
1717
const [pendingRoute, setPendingRoute] = useState<string | null>(null);
1818
const currentRoute = useRef<string | null>(null);
1919
useEffect(() => {
20-
let routeTransitionTimer: ReturnType<typeof setTimeout> | undefined = undefined;
20+
let routeTransitionTimer: ReturnType<typeof setTimeout> | undefined =
21+
undefined;
2122

2223
const handleRouteChangeStart = (url: string) => {
2324
clearTimeout(routeTransitionTimer);

0 commit comments

Comments
 (0)