revert Manually apply

Signed-off-by: limepotato <limepot@protonmail.ch>
This commit is contained in:
limepotato 2024-07-06 06:44:50 +02:00 committed by Iceshrimp development
parent 53d3e51ff7
commit 6ec4e431a1
No known key found for this signature in database
GPG key ID: 7249C94AE229BEAF

View file

@ -22,7 +22,6 @@ const props = defineProps<{
themeColor?: string;
softwareName?: string;
};
host: string | null;
}>();
let ticker = $ref<HTMLElement | null>(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);