pop thrice

This commit is contained in:
sneurlax 2023-01-27 16:05:57 -06:00
parent 679c382106
commit ad5f9b3de4

View file

@ -157,7 +157,11 @@ class BuyWarningPopup extends StatelessWidget {
child: PrimaryButton(
buttonHeight: ButtonHeight.l,
label: "Ok",
onPressed: Navigator.of(context).pop,
onPressed: () {
Navigator.of(context).pop();
Navigator.of(context).pop();
Navigator.of(context).pop(); // weee
},
),
),
],