diff --git a/src/screens/SettingsSheet/components/Backups/WalletsAndBackup.tsx b/src/screens/SettingsSheet/components/Backups/WalletsAndBackup.tsx
index 74ec4a4e969..f1a38d7ec24 100644
--- a/src/screens/SettingsSheet/components/Backups/WalletsAndBackup.tsx
+++ b/src/screens/SettingsSheet/components/Backups/WalletsAndBackup.tsx
@@ -348,7 +348,7 @@ export const WalletsAndBackup = () => {
>
{!isBackedUp && (
diff --git a/src/screens/SettingsSheet/utils.ts b/src/screens/SettingsSheet/utils.ts
index 0fb1d26faff..cda0da5ef72 100644
--- a/src/screens/SettingsSheet/utils.ts
+++ b/src/screens/SettingsSheet/utils.ts
@@ -103,14 +103,14 @@ export const titleForBackupState: Partial> = {
};
export const isWalletBackedUpForCurrentAccount = ({ backupType, backedUp, backupFile }: Partial) => {
- if (!backupType || !backupFile) {
- return false;
- }
-
if (IS_IOS || backupType === WalletBackupTypes.manual) {
return backedUp;
}
+ if (!backupType || !backupFile) {
+ return false;
+ }
+
// NOTE: For Android, we also need to check if the current google account has the matching backup file
if (!backupFile) {
return false;