Skip to content

Commit

Permalink
Merge pull request #1932 from synonymdev/fix/show-backup-toggle
Browse files Browse the repository at this point in the history
fix(ui): Fix Backup Modal
  • Loading branch information
coreyphillips authored Jun 3, 2024
2 parents 54e58a4 + 6d1cfbd commit 451595c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Settings/BackupSettings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { lightningBackupSelector } from '../../../store/reselect/lightning';
import { forceBackup } from '../../../store/slices/backup';
import { TBackupItem } from '../../../store/types/backup';
import { EBackupCategories } from '../../../store/utils/backup';
import { showBottomSheet } from '../../../store/utils/ui';
import { toggleBottomSheet } from '../../../store/utils/ui';
import {
ScrollView,
View as ThemedView,
Expand Down Expand Up @@ -217,7 +217,7 @@ const BackupSettings = ({
type: EItemType.button,
testID: 'BackupWallet',
onPress: (): void => {
showBottomSheet('backupNavigation');
toggleBottomSheet('backupNavigation');
},
},
{
Expand Down

0 comments on commit 451595c

Please sign in to comment.