consistency in seed naming

This commit is contained in:
Seth Forsgren 2022-12-13 23:32:09 -08:00
parent e1480a9ece
commit c09b5c59b7
1 changed files with 3 additions and 3 deletions

View File

@ -163,9 +163,9 @@ export function SeedImageSelector(
let selectOptions = [ let selectOptions = [
["OG Beat", "og_beat"], ["OG Beat", "og_beat"],
["Agile", "agile"], ["Agile", "agile"],
["Marin", "marim"], ["Marim", "marim"],
["Motorway", "motorway"], ["Motorway", "motorway"],
["Smooth", "vibes"], ["Vibes", "vibes"],
]; ];
let matchedOption = selectOptions.find((x) => x[1] === seedImage); let matchedOption = selectOptions.find((x) => x[1] === seedImage);
@ -191,7 +191,7 @@ export function SeedImageSelector(
}} }}
defaultValue={matchedOption[0]} defaultValue={matchedOption[0]}
> >
<option disabled>Chose your vibe</option> <option disabled>Change it up</option>
{selectOptions.map((x, i) => ( {selectOptions.map((x, i) => (
<option key={i}>{x[0]}</option> <option key={i}>{x[0]}</option>
))} ))}