Skip to content

Commit fe88840

Browse files
committed
fix(demo): venue picker fallback includes limitless
The registry entries set 'default' (preselected) but not 'options' (chips to render), so the picker fell back to the hardcoded ['polymarket', 'opinion'] in configurator.tsx and never showed Limitless.
1 parent dceb824 commit fe88840

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/demo/components/configurator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ function ControlField({
477477
<div className="space-y-1.5">
478478
{label}
479479
<div className="flex flex-wrap gap-1.5">
480-
{(control.options ?? ['polymarket', 'opinion']).map((venue) => {
480+
{(control.options ?? ['polymarket', 'opinion', 'limitless']).map((venue) => {
481481
const active = selected.includes(venue);
482482
return (
483483
<button

0 commit comments

Comments
 (0)