diff --git a/assets/js/hooks/types.ts b/assets/js/hooks/types.ts index 4602ec4c..ebe87604 100644 --- a/assets/js/hooks/types.ts +++ b/assets/js/hooks/types.ts @@ -2,7 +2,7 @@ export type UUID = `${string}-${string}-${string}-${string}-${string}`; export interface Node { uuid: UUID; - content: string; + content?: string; creator_id?: number; parent_id?: UUID; prev_id?: UUID;