fix(typing): add coAuthor to form story interface
This commit is contained in:
parent
188b55724c
commit
8d162c8029
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user