Skip to content

Commit

Permalink
fix: use supported languages only for install form
Browse files Browse the repository at this point in the history
  • Loading branch information
crazywoola committed Mar 14, 2024
1 parent af98954 commit 43acbbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/app/activate/activateForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ const ActivateForm = () => {
</label>
<div className="relative mt-1 rounded-md shadow-sm">
<SimpleSelect
defaultValue={defaultLanguage()}
items={languages}
defaultValue={LanguagesSupported[0]}
items={languages.filter(item => item.supported)}
onSelect={(item) => {
setLanguage(item.value as string)
}}
Expand Down

0 comments on commit 43acbbe

Please sign in to comment.