From fdba3a455ddceb707ed1a13aed33db694d71ac66 Mon Sep 17 00:00:00 2001 From: Viktor Riabkov Date: Mon, 28 Oct 2024 16:50:55 +0100 Subject: [PATCH] Fix: app version color --- src/widget/AppVersion/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/AppVersion/index.tsx b/src/widget/AppVersion/index.tsx index b4e48d5..6ccae0e 100644 --- a/src/widget/AppVersion/index.tsx +++ b/src/widget/AppVersion/index.tsx @@ -2,7 +2,7 @@ export const AppVersion = () => { const appVersion = import.meta.env.VITE_APP_VERSION ?? 'v0.0.0' return ( -
+
{appVersion}
)