From f542e8ce472a202c20d2d4d2f8989a29ddbdd2d0 Mon Sep 17 00:00:00 2001 From: amsyarasyiq <82711525+amsyarasyiq@users.noreply.github.com> Date: Wed, 28 Aug 2024 18:58:36 +0800 Subject: [PATCH] fix: fix themes page crashing? --- src/core/ui/settings/pages/Themes/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/ui/settings/pages/Themes/index.tsx b/src/core/ui/settings/pages/Themes/index.tsx index f3e14f4..602426f 100644 --- a/src/core/ui/settings/pages/Themes/index.tsx +++ b/src/core/ui/settings/pages/Themes/index.tsx @@ -15,9 +15,9 @@ export default function Themes() { title={Strings.THEMES} searchKeywords={[ - "manifest.name", - "manifest.description", - p => p.manifest.authors?.map((a: Author) => a.name).join(", ") + "data.name", + "data.description", + p => p.data.authors?.map((a: Author) => a.name).join(", ") ]} fetchFunction={installTheme} items={Object.values(themes)}