Skip to content

Commit

Permalink
Finish
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Jun 13, 2024
1 parent cd75cfa commit deacf10
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/(tabs)/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,20 +121,20 @@ function SettingsScreen() {
'Are you sure you want to delete your account?',
'',
[
{
text: 'Cancel',
onPress: () => {},
style: 'cancel',
},
{
text: 'OK',
onPress: onDelete,
style: 'destructive',
},
{
text: 'Cancel',
onPress: () => { },
style: 'cancel',
},
],
{
cancelable: true,
onDismiss: () => {},
onDismiss: () => { },
},
);

Expand Down

0 comments on commit deacf10

Please sign in to comment.