diff --git a/src/screens/Settings/Sections/PasscodeSection.tsx b/src/screens/Settings/Sections/PasscodeSection.tsx index facf6fba..e17891db 100644 --- a/src/screens/Settings/Sections/PasscodeSection.tsx +++ b/src/screens/Settings/Sections/PasscodeSection.tsx @@ -174,8 +174,9 @@ export const PasscodeSection = (props: Props) => { }; const disableBiometrics = useCallback(async () => { - setHasBiometrics(false); - await application?.disableBiometrics(); + if (await application?.disableBiometrics()) { + setHasBiometrics(false); + } }, [application]); const disablePasscode = useCallback(async () => {