fixes bugs

This commit is contained in:
mohammad
2025-02-05 16:53:36 +03:00
parent a18e8443d0
commit 51fbe64209
8 changed files with 445 additions and 293 deletions

View File

@ -62,7 +62,7 @@ class HomeBloc extends Bloc<HomeEvent, HomeState> {
emit(LoadingHome());
terms = await HomeApi().fetchTerms();
add(FetchPolicyEvent());
emit(PolicyAgreement());
// emit(PolicyAgreement());
} catch (e) {
return;
}
@ -72,7 +72,7 @@ class HomeBloc extends Bloc<HomeEvent, HomeState> {
try {
emit(LoadingHome());
policy = await HomeApi().fetchPolicy();
emit(PolicyAgreement());
// emit(PolicyAgreement());
} catch (e) {
return;
}