Update baseRoms

This commit is contained in:
Jared Schoeny
2025-10-24 01:22:36 -10:00
parent 848a55dbd0
commit b78725b893
5 changed files with 34 additions and 22 deletions

View File

@@ -399,7 +399,7 @@ export default function HackSubmitForm({ dummy = false }: HackSubmitFormProps) {
<option value="" disabled>{platform ? "Select base rom" : "Select platform first"}</option>
{baseRoms.filter(r => !platform || r.platform === platform).map(({ id, name, region }) => (
<option key={id} value={id}>
{name.replace('Pokemon ', '')} ({region})
{name.replace('Pokémon ', '')} ({region})
</option>
))}
</select>