Skip to content

Commit

Permalink
fix: mapping icon categories
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Nov 28, 2023
1 parent b1561de commit 206fab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/drawer/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function Settings() {
/>
}
>
{Icons[category].map((option) => (
{[...Icons[category]].map((option) => (
<MenuItem key={option} value={option}>
{t(
`${category.toLowerCase()}_${option.toLowerCase()}`,
Expand Down

0 comments on commit 206fab5

Please sign in to comment.