add edit profile screens (child/parent) with SCA, paginated transactions, and reactive state refresh

This commit is contained in:
2026-03-12 22:42:38 +01:00
parent 76c7eb606f
commit 69b3cf358a
79 changed files with 7033 additions and 1361 deletions

View File

@@ -21,18 +21,17 @@ class TreezorTokenInterceptor extends Interceptor {
_handling = true;
_onTokenExpired();
Future.delayed(const Duration(seconds: 2), () => _handling = false);
} else if (err.response?.statusCode == 500) {
_handling = true;
_onTokenExpired();
Future.delayed(const Duration(seconds: 2), () => _handling = false);
} else if (err.response?.statusCode == 401) {
_handling = true;
_onUnauthorized();
Future.delayed(const Duration(seconds: 2), () => _handling = false);
}
// else if (err.response?.statusCode == 401) {
// _handling = true;
// _onUnauthorized();
// Future.delayed(const Duration(seconds: 2), () => _handling = false);
// }
// } else if (err.response?.statusCode == 500) {
// _handling = true;
// _onTokenExpired();
// Future.delayed(const Duration(seconds: 2), () => _handling = false);
// }
}
handler.next(err);
}