Skip to content

Commit

Permalink
#30 Removes the combobox dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit Kumbhar committed Jan 24, 2025
1 parent c3b4507 commit 7c2c17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/destinations/DestinationSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function DestinationSelect({ propName, form }: { propName: string; form:
combobox.openDropdown();
});
}
}, [search, combobox]);
}, [search]);

const options = searchResults.map((item) => (
<Combobox.Option value={item.id} key={item.id}>
Expand Down

0 comments on commit 7c2c17a

Please sign in to comment.