From d4ef6f52bbc9f45fcd383a5ce67fc517d20652d2 Mon Sep 17 00:00:00 2001 From: Wingy Date: Fri, 3 Nov 2023 18:20:42 -0700 Subject: [PATCH] chore(mobile): change version mismatch text (#4831) * change version mismatch text * change text --- mobile/lib/shared/providers/server_info.provider.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/shared/providers/server_info.provider.dart b/mobile/lib/shared/providers/server_info.provider.dart index 514b7b0e15027..b0bcf89b1a105 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;