diff options
Diffstat (limited to 'src/components/FFXIVWorldSelector.tsx')
| -rw-r--r-- | src/components/FFXIVWorldSelector.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/FFXIVWorldSelector.tsx b/src/components/FFXIVWorldSelector.tsx index d078640..95d6f65 100644 --- a/src/components/FFXIVWorldSelector.tsx +++ b/src/components/FFXIVWorldSelector.tsx @@ -47,7 +47,7 @@ const FFXIVWorldSelector: React.FC<FFXIVWorldSelectorProps> = ({ message = "Sele <label htmlFor="world-select" className="ffxiv-label">{message}</label> <select id="world-select" onChange={handleWorldChange} value={selectedWorld || ''} className="ffxiv-select"> <option value="">--Please choose an option--</option> - {worlds.map((world) => ( + {worlds.map((world: World) => ( <option key={world.id} value={world.name}> {world.name} </option> |
