Skip to content

Commit

Permalink
feat(loading): update timeout into 2500 ms
Browse files Browse the repository at this point in the history
  • Loading branch information
himarpl authored Oct 14, 2024
1 parent 4236940 commit a18fcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/providers/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function Loading({ children }: { children: React.ReactNode }) {
useEffect(() => {
const timer = setTimeout(() => {
setIsLoading(false);
}, 1000);
}, 2500);

return () => clearTimeout(timer);
}, []);
Expand Down

0 comments on commit a18fcc6

Please sign in to comment.