minor code cleanup

This commit is contained in:
Matthew Fosse 2024-05-16 10:10:26 -07:00
parent 336c1fff5f
commit 4dc401a100

View file

@ -267,10 +267,10 @@ class _WalletSeedPageBodyState extends State<WalletSeedPageBody> {
context: context, context: context,
builder: (dialogContext) { builder: (dialogContext) {
return AlertWithTwoActions( return AlertWithTwoActions(
alertTitle: S.of(context).save_to_pm, alertTitle: S.current.save_to_pm,
alertContent: S.of(context).save_backup_password, alertContent: S.current.save_backup_password,
rightButtonText: S.of(context).ok, rightButtonText: S.current.save,
leftButtonText: S.of(context).cancel, leftButtonText: S.current.cancel,
actionRightButton: () async { actionRightButton: () async {
Navigator.of(dialogContext).pop(true); Navigator.of(dialogContext).pop(true);
}, },