fix : auth

This commit is contained in:
MrM
2025-06-03 23:57:25 +03:30
parent 151fa10641
commit 5849466e3b
3 changed files with 15 additions and 11 deletions

View File

@@ -30,7 +30,7 @@ class CaptchaWidgetLogic extends GetxController with StateMixin<CaptchaResponseM
change(null, status: RxStatus.loading());
textController.value.clear();
await Future.delayed(Duration(milliseconds: 800));
captchaKey.value = (random.nextInt(999999)+1000).toString();
captchaKey.value = (random.nextInt(999999)+100000).toString();
change(value, status: RxStatus.success());
}