From 667c18a74662919410cd0444cdb7c9be40543ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Kr=C4=8Dek?= Date: Thu, 7 Aug 2025 16:48:12 +0200 Subject: [PATCH] Fixed mistaken git ref --- src/lib/components/Splash.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/components/Splash.svelte b/src/lib/components/Splash.svelte index cda7a2b..ced25da 100644 --- a/src/lib/components/Splash.svelte +++ b/src/lib/components/Splash.svelte @@ -3,8 +3,8 @@ import FeatureList from './splash/FeatureList.svelte'; import { env } from '$env/dynamic/public'; - const buildDate = env.PUBLIC_BUILD_DATE || '2025-01-01'; - const vcsRef = env.PUBLIC_VCS_REF ? env.PUBLIC_VCS_REF.substring(0, 7) : 'abcdef'; + const buildDate = env.PUBLIC_BUILD_DATE; + const gitRef = env.PUBLIC_GIT_REF ? env.PUBLIC_GIT_REF.substring(0, 7) : ''; function startWizard() { @@ -63,9 +63,9 @@