From c32864203e501381d6d54e7985b0b540bffed267 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Mon, 5 Feb 2024 17:24:48 +0100 Subject: [PATCH] Fix type issue --- client/src/@types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/@types/index.ts b/client/src/@types/index.ts index 67f6cb13..4746ab98 100644 --- a/client/src/@types/index.ts +++ b/client/src/@types/index.ts @@ -44,7 +44,7 @@ export interface ExtendedContentBlockNode extends ContentBlockNode { } export interface Chapter extends Hideable, Page { - contentBlocks: ContentBlock[]; + contentBlocks: ExtendedContentBlockNode[]; bookmark: any; titleHidden: boolean; descriptionHidden: boolean;