diff --git a/packages/client/src/components/MkInstanceTicker.vue b/packages/client/src/components/MkInstanceTicker.vue index 625cf86f2..d23ec39ef 100644 --- a/packages/client/src/components/MkInstanceTicker.vue +++ b/packages/client/src/components/MkInstanceTicker.vue @@ -22,7 +22,6 @@ const props = defineProps<{ themeColor?: string; softwareName?: string; }; - host: string | null; }>(); let ticker = $ref(null); @@ -39,9 +38,6 @@ const instance = props.instance ?? { softwareName: Instance.softwareName || "Iceshrimp", }; -const instanceInfoUrl = - props.host == null ? "/about" : `/instance-info/${props.host}`; - const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1); const computedStyle = getComputedStyle(document.documentElement);