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)}