Feat/workflow git #14

Merged
maxime.daniels merged 8 commits from feat/workflow-git into dev 2026-08-03 22:05:43 +02:00
Showing only changes of commit c950249d15 - Show all commits
+2 -2
View File
@@ -63,7 +63,7 @@ export const useLoginFlow = (onLoginSuccess: () => void) => {
} else { } else {
onLoginSuccess(); onLoginSuccess();
} }
} catch (err) { } catch {
setError("Identifiants incorrects ou accès révoqué."); setError("Identifiants incorrects ou accès révoqué.");
pb.authStore.clear(); pb.authStore.clear();
} finally { } finally {
@@ -97,7 +97,7 @@ export const useLoginFlow = (onLoginSuccess: () => void) => {
} else { } else {
setError("Code de sécurité invalide ou expiré."); setError("Code de sécurité invalide ou expiré.");
} }
} catch (err) { } catch {
setError("Erreur critique lors de la vérification."); setError("Erreur critique lors de la vérification.");
} finally { } finally {
setIsLoading(false); setIsLoading(false);