sync changes

This commit is contained in:
2026-05-12 11:25:19 +03:00
parent 3616f84556
commit fdc5aefdd2
25 changed files with 313 additions and 152 deletions

View File

@@ -20,6 +20,8 @@ class CurrentRidesBloc extends Bloc<CurrentRidesEvent, CurrentRidesState> {
) async {
emit(state.copyWith(status: CurrentRidesStatus.loading));
await Future.delayed(const Duration(seconds: 2));
final result = await _getClientOrdersUsecase();
if (result is Success<List<ScooterOrder>>) {