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,
builder: (dialogContext) {
return AlertWithTwoActions(
alertTitle: S.of(context).save_to_pm,
alertContent: S.of(context).save_backup_password,
rightButtonText: S.of(context).ok,
leftButtonText: S.of(context).cancel,
alertTitle: S.current.save_to_pm,
alertContent: S.current.save_backup_password,
rightButtonText: S.current.save,
leftButtonText: S.current.cancel,
actionRightButton: () async {
Navigator.of(dialogContext).pop(true);
},