fix(auth): improve resendCode with status tracking and return value
This commit is contained in:
@@ -94,9 +94,9 @@ class _RegisterVerificationViewState extends State<RegisterVerificationView> {
|
||||
|
||||
Future<void> _handleResendCode() async {
|
||||
final cubit = context.read<RegisterCubit>();
|
||||
await cubit.resendCode();
|
||||
final success = await cubit.resendCode();
|
||||
|
||||
if (cubit.state.codeSent && mounted) {
|
||||
if (success && mounted) {
|
||||
_startCountdown();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user