From 1694cca92cb83295577903a83b00b8d7486a6924 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Thu, 13 Nov 2025 07:45:26 +0100 Subject: [PATCH] refactor(settings): improve error message on version fetch --- .../src/features/app-settings/panel/about-panel/AppVersion.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx b/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx index 5d52762f1..3de8c89c6 100644 --- a/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx +++ b/apps/client/src/features/app-settings/panel/about-panel/AppVersion.tsx @@ -10,7 +10,7 @@ export default function AppVersion() { return ( {`You are currently using Ontime version ${appVersion}`} - {`Could not fetch version information: ${isError}`} + Could not fetch version information ); }