Skip to content

Commit

Permalink
fix: fix themes page crashing?
Browse files Browse the repository at this point in the history
  • Loading branch information
pylixonly committed Aug 28, 2024
1 parent b629261 commit f542e8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/ui/settings/pages/Themes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export default function Themes() {
<AddonPage<Theme>
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)}
Expand Down

0 comments on commit f542e8c

Please sign in to comment.