adding seed image options

This commit is contained in:
Seth Forsgren 2022-12-13 17:07:32 -08:00
parent f5bc5e4b58
commit 0fa48b6541
1 changed files with 10 additions and 3 deletions

View File

@ -160,9 +160,16 @@ export function SeedImageSelector(
) {
let selectOptions = [
["OG Beat", "og_beat"],
["Soul", "chill_soul_1"],
// ["High Energy", 0.85],
// ["Spacy", 0.95],
["Epic", "epic"],
['Folksy', 'folksy'],
['Funk', 'funk'],
['Hustle', 'hustle'],
['Latin', 'latin'],
['Lounge', 'lounge'],
['Pressure', 'pressure'],
['Rock', 'rock'],
['Stomp', 'stomp'],
['Wild', 'wild'],
];
let matchedOption = selectOptions.find((x) => x[1] === seedImage);