PLACE

(filters.country = detail?.value)} options={toComboBoxOptions(countries)} placeholder="Search country..." selectedOption={filters.country ? { label: filters.country, value: filters.country } : undefined} />
(filters.state = detail?.value)} options={toComboBoxOptions(states)} placeholder="Search state..." selectedOption={filters.state ? { label: filters.state, value: filters.state } : undefined} />
(filters.city = detail?.value)} options={toComboBoxOptions(cities)} placeholder="Search city..." selectedOption={filters.city ? { label: filters.city, value: filters.city } : undefined} />