From 586f02df0a597aff1712bed939ed045754f41ff3 Mon Sep 17 00:00:00 2001 From: Spythere Date: Sat, 7 Mar 2026 18:51:21 +0100 Subject: [PATCH] chore(footer): updated production host indicator to a new domain --- src/components/app/Footer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/app/Footer.vue b/src/components/app/Footer.vue index c454ecc..c3c5780 100644 --- a/src/components/app/Footer.vue +++ b/src/components/app/Footer.vue @@ -34,7 +34,7 @@ import { useStore } from '../../store'; export default defineComponent({ data() { return { - isOnProductionHost: location.hostname == 'pojazdownik-td2.web.app', + isOnProductionHost: location.hostname == 'pojazdownik-td2.web.app' || location.hostname == 'pojazdownik-td2.spythere.eu', VERSION: packageInfo.version, store: useStore(), };