fix: avoid fetching null account id
This commit is contained in:
parent
b078e456cc
commit
abbd026c1d
2 changed files with 6 additions and 3 deletions
|
@ -5,7 +5,7 @@ const { status } = defineProps<{
|
|||
status: Status
|
||||
}>()
|
||||
|
||||
const account = useAccountById(status.inReplyToAccountId!)
|
||||
const account = useAccountById(status.inReplyToAccountId)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue