aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/FFXIVWorldSelector.tsx
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2024-08-27 01:22:17 -0700
committerPinapelz <yukais@pinapelz.com>2024-08-27 01:22:17 -0700
commit8194e0f034b8e110cb880d11e278a2b7d6519204 (patch)
tree2345d6a6eaf4fe1c973f7d590ac01c6b006f5628 /src/components/FFXIVWorldSelector.tsx
parentd0cb3d93df83c8535bce97f8f509b37c2e6ead86 (diff)
fix lint implicit typing issuesHEADmain
Diffstat (limited to 'src/components/FFXIVWorldSelector.tsx')
-rw-r--r--src/components/FFXIVWorldSelector.tsx2
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>
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage