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

zio/stable
Tuur Martens 2023-04-10 20:12:27 +02:00 committed by GitHub
parent 2dc7ad27bf
commit 79538a65ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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({