Skip to content

Commit

Permalink
fix: remove non-existant language (#43)
Browse files Browse the repository at this point in the history
Remove non-existant language. This breaks the website loading for users
with french as first locale.
  • Loading branch information
jeluard authored Dec 18, 2023
1 parent c45a9ad commit b357095
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ const theme = createTheme({
})

const availableLanguages = [
{ id: "en", label: "English" },
{ id: "fr", label: "Français" }
{ id: "en", label: "English" }
]

const App: React.FC<{}> = () => {
Expand Down

0 comments on commit b357095

Please sign in to comment.