Skip to content

Commit

Permalink
chore: 🐛 Remove param on pop
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 authored and Chralu committed Oct 21, 2024
1 parent 0657303 commit 7535a3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ui/menu/settings/about_menu_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class AboutMenuView extends ConsumerWidget implements SheetSkeletonInterface {
key: const Key('back'),
color: ArchethicTheme.text,
onPressed: () {
context.pop(SettingsSheetWallet.routerPage);
context.pop();
},
),
);
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/menu/settings/customization_menu_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CustomizationMenuView extends ConsumerWidget
key: const Key('back'),
color: ArchethicTheme.text,
onPressed: () {
context.pop(SettingsSheetWallet.routerPage);
context.pop();
},
),
);
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/menu/settings/security_menu_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SecurityMenuView extends ConsumerWidget
key: const Key('back'),
color: ArchethicTheme.text,
onPressed: () {
context.pop(SettingsSheetWallet.routerPage);
context.pop();
},
),
);
Expand Down

0 comments on commit 7535a3f

Please sign in to comment.