Skip to content

Commit

Permalink
diet preference options with kebab case value
Browse files Browse the repository at this point in the history
  • Loading branch information
arhamathar committed Jan 7, 2025
1 parent 9b33e90 commit 8deec25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,9 @@ export function EncounterQuestion({
</SelectTrigger>
<SelectContent>
<SelectItem value="vegetarian">Vegetarian</SelectItem>
<SelectItem value="diary_free">Dairy Free</SelectItem>
<SelectItem value="nut_free">Nut Free</SelectItem>
<SelectItem value="gluten_free">Gluten Free</SelectItem>
<SelectItem value="diary-free">Dairy Free</SelectItem>
<SelectItem value="nut-free">Nut Free</SelectItem>
<SelectItem value="gluten-free">Gluten Free</SelectItem>
<SelectItem value="vegan">Vegan</SelectItem>
<SelectItem value="halal">Halal</SelectItem>
<SelectItem value="kosher">Kosher</SelectItem>
Expand Down
6 changes: 3 additions & 3 deletions src/types/emr/encounter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export type EncounterDischargeDisposition =

export type EncounterDietPreference =
| "vegetarian"
| "diary_free"
| "nut_free"
| "gluten_free"
| "diary-free"
| "nut-free"
| "gluten-free"
| "vegan"
| "halal"
| "kosher"
Expand Down

0 comments on commit 8deec25

Please sign in to comment.