From f977bff183ab5c25a27f565804014912908ad61d Mon Sep 17 00:00:00 2001 From: takker <37929109+takker99@users.noreply.github.com> Date: Tue, 30 Sep 2025 13:27:31 +0900 Subject: [PATCH] fix(api): `infoboxResult` and `infoboxDisableLinks` in `RelatedPage` are optional --- api/pages/project/title.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/pages/project/title.ts b/api/pages/project/title.ts index ae7bbd6..8b7f56d 100644 --- a/api/pages/project/title.ts +++ b/api/pages/project/title.ts @@ -263,9 +263,9 @@ export interface RelatedPage extends */ linksLc: StringLc[]; - infoboxResult: InfoboxResult[]; + infoboxResult?: InfoboxResult[]; - infoboxDisableLinks: string[]; + infoboxDisableLinks?: string[]; charsCount: number;