Fix isLimited condition

This commit is contained in:
andrewwallacespeckle
2025-04-24 12:32:24 +01:00
parent f2572939ef
commit 2c7ef71cd0
@@ -66,5 +66,5 @@ const createdAt = computed(() => {
}
})
const isLimited = computed(() => !props.comment.rawText)
const isLimited = computed(() => !props.comment.text)
</script>