diff --git a/public/funnels/soulmate.json b/public/funnels/soulmate.json index b0df7af..a5bb56d 100644 --- a/public/funnels/soulmate.json +++ b/public/funnels/soulmate.json @@ -918,7 +918,7 @@ "color": "default" }, "bottomActionButton": { - "show": true, + "show": false, "cornerRadius": "3xl", "showPrivacyTermsConsent": false }, @@ -1394,7 +1394,7 @@ }, "icon": { "type": "image", - "value": "/images/d530695a-6847-4ef7-935b-a3f5b0f59791.svg", + "value": "/images/e49915b8-6371-4235-8fd8-e04d5e431b00.png", "size": "xl" }, "variables": [], diff --git a/public/images/e49915b8-6371-4235-8fd8-e04d5e431b00.png b/public/images/e49915b8-6371-4235-8fd8-e04d5e431b00.png new file mode 100644 index 0000000..a5fb87e Binary files /dev/null and b/public/images/e49915b8-6371-4235-8fd8-e04d5e431b00.png differ diff --git a/src/components/ui/select.tsx b/src/components/ui/select.tsx index 40f65c4..4dff411 100644 --- a/src/components/ui/select.tsx +++ b/src/components/ui/select.tsx @@ -124,7 +124,7 @@ function SelectItem({ - Array.from({ length: 12 }, (_, i) => ({ - value: String(i + 1).padStart(2, "0"), - label: String(i + 1), - })), - [] - ); + const monthOptions = useMemo(() => { + const monthNames = [ + "January", "February", "March", "April", "May", "June", + "July", "August", "September", "October", "November", "December" + ]; + + return Array.from({ length: 12 }, (_, i) => ({ + value: String(i + 1).padStart(2, "0"), + label: monthNames[i], + })); + }, []); const dayOptions = useMemo(() => { const daysInMonth = diff --git a/src/lib/funnel/bakedFunnels.ts b/src/lib/funnel/bakedFunnels.ts index bd4609b..68e25ab 100644 --- a/src/lib/funnel/bakedFunnels.ts +++ b/src/lib/funnel/bakedFunnels.ts @@ -926,7 +926,7 @@ export const BAKED_FUNNELS: Record = { "color": "default" }, "bottomActionButton": { - "show": true, + "show": false, "cornerRadius": "3xl", "showPrivacyTermsConsent": false }, @@ -1402,7 +1402,7 @@ export const BAKED_FUNNELS: Record = { }, "icon": { "type": "image", - "value": "/images/d530695a-6847-4ef7-935b-a3f5b0f59791.svg", + "value": "/images/e49915b8-6371-4235-8fd8-e04d5e431b00.png", "size": "xl" }, "variables": [],