fix: avoid fetching null account id

This commit is contained in:
Daniel Roe 2022-12-06 23:38:00 +00:00
parent b078e456cc
commit abbd026c1d
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55
2 changed files with 6 additions and 3 deletions

View file

@ -5,7 +5,7 @@ const { status } = defineProps<{
status: Status
}>()
const account = useAccountById(status.inReplyToAccountId!)
const account = useAccountById(status.inReplyToAccountId)
</script>
<template>