fix(auth): Improve auth error handling without token clearing

This commit is contained in:
cogwheel0
2025-11-12 13:23:58 +05:30
parent 35377cebd8
commit 45135d9185
10 changed files with 239 additions and 79 deletions

View File

@@ -147,9 +147,7 @@ Future<Set<String>> _scanUsedLocalizationKeys(Set<String> baseKeys) async {
}
return false;
} catch (e) {
stderr.writeln(
'warning: failed to search for key "$key": $e',
);
stderr.writeln('warning: failed to search for key "$key": $e');
return false;
}
}