mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-04 16:35:56 +02:00
refactor(frontend): reduce type errors
This commit is contained in:
@@ -140,8 +140,8 @@ const profile = reactive({
|
||||
location: $i.location,
|
||||
birthday: $i.birthday,
|
||||
lang: $i.lang,
|
||||
isBot: $i.isBot,
|
||||
isCat: $i.isCat,
|
||||
isBot: $i.isBot ?? false,
|
||||
isCat: $i.isCat ?? false,
|
||||
});
|
||||
|
||||
watch(() => profile, () => {
|
||||
|
||||
Reference in New Issue
Block a user