We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6699cf commit 09b7493Copy full SHA for 09b7493
apps/mobile/v1/src/components/MasterPasswordDialog/index.tsx
@@ -31,6 +31,12 @@ export function MasterPasswordScreen({
31
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium);
32
}, []);
33
34
+ // Reset loading state when component mounts or isNewSetup changes
35
+ // This ensures the form is shown after sign out/sign in
36
+ useEffect(() => {
37
+ setIsLoading(false);
38
+ }, [isNewSetup]);
39
+
40
const handleFormSubmit = async (password: string) => {
41
setIsLoading(true);
42
try {
0 commit comments