Skip to content

Commit

Permalink
list keys
Browse files Browse the repository at this point in the history
  • Loading branch information
marihachi authored Feb 1, 2024
1 parent 1e34de8 commit c90aa21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/setting-page/SettingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const SettingPage: FC<Props> = (props) => {
<select name="theme" id="theme-select" value={ themeSelect } onChange={ e => setThemeSelect(e.target.value) }>
{
themePresets.map(preset =>
<option value={ preset.id }>{ preset.name }</option>
<option key={ preset.id } value={ preset.id }>{ preset.name }</option>
)
}
<option value="custom" disabled>Custom</option>
Expand Down

0 comments on commit c90aa21

Please sign in to comment.