Skip to content

Commit

Permalink
display name of hospital with each physician in form dropdrown
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendy authored and Wendy committed Oct 4, 2024
1 parent 9ca8de0 commit 24f1a4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function HealthcareChoicesSearch({ form, choice, initialData }) {

const options = (data || []).map((item) => (
<Combobox.Option value={item.id} key={item.id}>
{item.name}
{item.name} - {item.hospitals[0]?.name}
</Combobox.Option>
));

Expand Down

0 comments on commit 24f1a4e

Please sign in to comment.