From 0fa48b6541ece8092f03fea136c506595240853f Mon Sep 17 00:00:00 2001 From: Seth Forsgren Date: Tue, 13 Dec 2022 17:07:32 -0800 Subject: [PATCH] adding seed image options --- components/Settings.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/components/Settings.tsx b/components/Settings.tsx index 7e5a820..47d0a70 100644 --- a/components/Settings.tsx +++ b/components/Settings.tsx @@ -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);