chore: make prop with default value optional in KanbanCard

This commit is contained in:
kolaente 2025-05-13 21:44:50 +02:00
parent cd9e5bddd9
commit a8d60a423a
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ import {useProjectStore} from '@/stores/projects'
const props = withDefaults(defineProps<{
task: ITask,
projectId: IProject['id'],
loading: boolean,
loading?: boolean,
}>(), {
loading: false,
})