This commit is contained in:
ThatOneCalculator 2023-07-26 00:35:11 -07:00
parent c99cb391ee
commit 0345001db5
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -259,8 +259,9 @@ definePageMetadata(
);
onMounted(() => {
if (defaultStore.state.woozyMode) {
instanceIcon!.src = "/static-assets/woozy.png";
if (defaultStore.state.woozyMode === true) {
iconSrc.value = "/static-assets/woozy.png";
instanceIcon.src = iconSrc.value;
}
});