Создание карточки в коллекции + экран поиска коллекции

This commit is contained in:
2025-04-02 21:40:31 +03:00
parent fb7ff84087
commit 17dff72655
36 changed files with 2495 additions and 277 deletions

View File

@@ -43,6 +43,14 @@ InterceptorsWrapper get _error {
// String? token = await getIt<AuthService>().refresh();
}
if (error.response != null) {
try {
showErrorToast(error.response?.data['message']);
} catch (_) {
showErrorToast(error.response?.data);
}
}
handler.next(error);
},
);