Skip to content

Commit

Permalink
style: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed May 8, 2020
1 parent bb092f4 commit 2abbc0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timezones.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export const TimeZoneSelector = (
) => (
<select {...props}>
{timezones.map((tz) => (
<option>{tz}</option>
<option key={tz}>{tz}</option>
))}
</select>
)

0 comments on commit 2abbc0c

Please sign in to comment.