From 71970a0d1d1c1bc7359809d658fb16c4a2a1102e Mon Sep 17 00:00:00 2001 From: ManishMadan2882 Date: Fri, 14 Feb 2025 20:06:50 +0530 Subject: [PATCH] (feat:transit): reduce delay to 250 --- frontend/src/hooks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/hooks/index.ts b/frontend/src/hooks/index.ts index 56f50406..2247cb07 100644 --- a/frontend/src/hooks/index.ts +++ b/frontend/src/hooks/index.ts @@ -115,7 +115,7 @@ export function useDarkTheme() { export function useLoaderState( initialState = false, - delay = 500, + delay = 250, ): [boolean, (value: boolean) => void] { const [state, setState] = useState(initialState);