Skip to content

Commit

Permalink
change value to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
hknots committed Dec 20, 2024
1 parent 7e990d5 commit ce3e737
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/constants/envSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export const EnvSelector = ({

return (
<Select label="" defaultValue={value} onChange={handleChange}>
<option value="Api">API</option>
<option value="Beta">BETA</option>
<option value="Alpha">ALPHA</option>
<option value="api">API</option>
<option value="beta">BETA</option>
<option value="alpha">ALPHA</option>
</Select>
);
};

0 comments on commit ce3e737

Please sign in to comment.