chore(mobile): Apply stricter linting rules for formatting (#30370)

* chore(mobile): Apply stricter linting rules for formatting

* Formatting fixes
This commit is contained in:
Adam Gastineau 2026-07-30 01:56:46 -07:00 committed by GitHub
parent 0293414abd
commit d864a90811
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
208 changed files with 515 additions and 533 deletions

View file

@ -24,7 +24,7 @@ void handleError(Object error, {StackTrace? stack, String? description}) {
);
final String message;
if (serverErrorMessage(error) case String serverMessage) {
if (serverErrorMessage(error) case final String serverMessage) {
message = serverMessage;
} else if (isConnectionError(error)) {
message = StaticTranslations.instance.login_form_server_error;