chore: make prop optional in Comments

This commit is contained in:
kolaente 2025-05-13 21:43:17 +02:00
parent 80a54ecb82
commit 60fcc67fbe
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ import { useCopyToClipboard } from '@/composables/useCopyToClipboard'
const props = withDefaults(defineProps<{
taskId: number,
canWrite?: boolean
initialComments?: ITaskComment[]
initialComments: ITaskComment[]
}>(), {
canWrite: true,
})