We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76545a commit f1c3891Copy full SHA for f1c3891
context/AppContextProvider.tsx
@@ -68,7 +68,7 @@ const AppContextProvider = ({ children }: AppContextProviderProps) => {
68
logger.info('User authenticated successfully.');
69
setTimeout(() => {
70
setIsSigningInUser(false); // hide the splash screen after the delay
71
- }, 5000);
+ }, 2500);
72
} else if (res.status === 500) {
73
setCurrentUser(null);
74
logger.error('User authentication failed.');
@@ -94,7 +94,7 @@ const AppContextProvider = ({ children }: AppContextProviderProps) => {
94
setCurrentUser(res.data);
95
96
97
98
} else {
99
100
logger.warn('Auto-login failed.');
0 commit comments