Skip to content

Commit b35ba35

Browse files
authored
Update AuthContext.tsx
1 parent 8ad119e commit b35ba35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/contexts/AuthContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const AuthProvider = ({ children }: { children: React.ReactNode }) => {
2424
const [loading, setLoading] = useState(true);
2525

2626
useEffect(() => {
27-
console.log('🔐 AuthProvider - Initialisation stable');
27+
console.log('🔐 AuthProvider - Initialisation directe sans timeout');
2828

2929
const unsubscribe = onAuthStateChanged(auth, (user) => {
3030
console.log('🔐 Auth state reçu:', user ? 'CONNECTÉ' : 'DÉCONNECTÉ');

0 commit comments

Comments
 (0)