From 8d162c8029365b7baa3563dc4f4162f8b41a9937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Wed, 11 Oct 2023 16:36:29 -0400 Subject: [PATCH] fix(typing): add coAuthor to form story interface --- lib/client/types/form/story.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/client/types/form/story.ts b/lib/client/types/form/story.ts index 81c24b5..fa45acd 100644 --- a/lib/client/types/form/story.ts +++ b/lib/client/types/form/story.ts @@ -20,6 +20,7 @@ export interface FormChapter { export interface FormStory { title: string; + coAuthor: number | null; chapters: FormChapter[]; ficmas?: number | null; challenge?: number | null; @@ -44,6 +45,7 @@ export const defaultChapter: FormChapter = { export const defaultStory: FormStory = { title: "", + coAuthor: null, chapters: [], ficmas: null, challenge: null,