Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ const AccountRecoveryChoiceScreen: React.FC = () => {
</Description>

<YStack gap="$2.5" width="100%" paddingTop="$6">
<PrimaryButton
{/* <PrimaryButton
trackEvent={BackupEvents.CLOUD_BACKUP_STARTED}
onPress={onRestoreFromTurnkeyPress}
testID="button-from-turnkey"
Expand All @@ -217,7 +217,7 @@ const AccountRecoveryChoiceScreen: React.FC = () => {
>
{restoring ? 'Restoring' : 'Restore'} from Turnkey
{restoring ? '…' : ''}
</PrimaryButton>
</PrimaryButton> */}
<PrimaryButton
trackEvent={BackupEvents.CLOUD_BACKUP_STARTED}
onPress={onRestoreFromCloudPress}
Expand Down
4 changes: 2 additions & 2 deletions app/src/screens/account/settings/CloudBackupScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const CloudBackupScreen: React.FC<CloudBackupScreenProps> = ({
</Pressable>
)}

{backedUpWithTurnKey ? (
{/* {backedUpWithTurnKey ? (
<SecondaryButton
disabled
trackEvent={BackupEvents.CLOUD_BACKUP_DISABLE_STARTED}
Expand All @@ -280,7 +280,7 @@ const CloudBackupScreen: React.FC<CloudBackupScreenProps> = ({
{turnkeyPending ? '…' : ''}
</Text>
</Pressable>
)}
)} */}

<BottomButton
cloudBackupEnabled={cloudBackupEnabled}
Expand Down
Loading