1
0
Fork 1
mirror of https://example.com synced 2024-11-23 20:46:40 +09:00

fix an instance ticker bug

This commit is contained in:
naskya 2023-04-27 03:29:07 +09:00
parent 6b87d708f3
commit eea98cb6c2
Signed by: naskya
GPG key ID: 164DFF24E2D40139

View file

@ -35,7 +35,7 @@ const instance = props.instance ?? {
'meta[name="theme-color-orig"]'
) as HTMLMetaElement
)?.content,
software: Instance.softwareName || "Calckey",
softwareName: Instance.softwareName || "Calckey",
};
const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1);