fix for resend, cooldown and a few small fixes

This commit is contained in:
Arseni
2026-02-13 01:03:47 +03:00
parent 44a22ce962
commit b5db65ef78
24 changed files with 550 additions and 227 deletions

View File

@@ -45,6 +45,9 @@ GoRouter createRouter() => GoRouter(
email: state.extra is SignupConfirmationArgs
? (state.extra as SignupConfirmationArgs).email
: null,
password: state.extra is SignupConfirmationArgs
? (state.extra as SignupConfirmationArgs).password
: null,
),
),
GoRoute(
@@ -57,4 +60,4 @@ GoRouter createRouter() => GoRouter(
payoutShellRoute(),
],
errorBuilder: (_, _) => const NotFoundPage(),
);
);