fix: wrong profile showing on hover sometimes (#1913) (#1964)

pull/1802/head
Tuur Martens 2023-04-10 20:12:27 +02:00 zatwierdzone przez GitHub
rodzic 2dc7ad27bf
commit 79538a65ee
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ const props = defineProps<{
disabled?: boolean
}>()
const account = props.account || (props.handle ? useAccountByHandle(props.handle!) : undefined)
const account = computed(() => props.account || (props.handle ? useAccountByHandle(props.handle!) : undefined))
const userSettings = useUserSettings()
defineOptions({