diff --git a/mobile/lib/shared/providers/server_info.provider.dart b/mobile/lib/shared/providers/server_info.provider.dart index 514b7b0e15..b0bcf89b1a 100644 --- a/mobile/lib/shared/providers/server_info.provider.dart +++ b/mobile/lib/shared/providers/server_info.provider.dart @@ -66,7 +66,7 @@ class ServerInfoNotifier extends StateNotifier { state = state.copyWith( isVersionMismatch: true, versionMismatchErrorMessage: - "Server is out of date in major version. Some functionalities might not work correctly. Download and rebuild server", + "Server is out of date. Please update to the latest major version.", ); return; @@ -76,7 +76,7 @@ class ServerInfoNotifier extends StateNotifier { state = state.copyWith( isVersionMismatch: true, versionMismatchErrorMessage: - "Server is out of date in minor version. Some functionalities might not work correctly. Consider download and rebuild server", + "Server is out of date. Consider updating to the latest minor version.", ); return;