fix an instance ticker bug

This commit is contained in:
naskya 2023-04-27 03:29:07 +09:00
parent 6b87d708f3
commit eea98cb6c2
No known key found for this signature in database
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);