Skip to content

Commit ee5885f

Browse files
Antjeclaude
andcommitted
fix: remove dairy-free tag from items with fried egg
- Thai Basil Chicken: remove df tag (has fried egg) - Bulgogi Bowl: remove df tag, add egg to ingredients/allergens - Crispy Shrimp & Garlic Noodles: remove df tag, add egg - Crispy Taiwanese Pork Chop: remove df tag, add eggs to allergens Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8a03d46 commit ee5885f

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/data/menus.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -415,14 +415,14 @@ export const galleryMenuItems: MenuItem[] = [
415415
{
416416
id: 'garlic-noodles',
417417
name: 'Crispy Shrimp & Fried Garlic Noodles',
418-
description: 'Asian-style fried garlic noodles with crispy shrimp, hoisin glaze, and scallions',
419-
ingredients: ['fresh noodles', 'shrimp', 'fried garlic', 'garlic', 'hoisin sauce', 'soy sauce', 'sesame oil', 'scallions', 'cilantro', 'vegetable oil', 'salt', 'white pepper'],
420-
tags: ['df'],
418+
description: 'Asian-style fried garlic noodles with crispy shrimp, fried egg, hoisin glaze, and scallions',
419+
ingredients: ['fresh noodles', 'shrimp', 'fried garlic', 'garlic', 'hoisin sauce', 'soy sauce', 'sesame oil', 'scallions', 'cilantro', 'vegetable oil', 'egg', 'salt', 'white pepper'],
420+
tags: [],
421421
price: 24,
422422
sortPriority: 3,
423423
image: '/images/menu/plated/garlicnoodles.png',
424424
nutrition: { calories: 650, protein: 32, carbs: 82, fat: 22, fiber: 5, servingSize: '1 bowl (480g)' },
425-
allergens: ['gluten', 'soy', 'shellfish'],
425+
allergens: ['gluten', 'soy', 'shellfish', 'eggs'],
426426
prepTime: 20,
427427
difficulty: 'easy',
428428
orderable: true,
@@ -613,14 +613,14 @@ export const galleryMenuItems: MenuItem[] = [
613613
{
614614
id: 'bulgogi-bowl',
615615
name: 'Bulgogi Bowl',
616-
description: 'Korean marinated beef with steamed rice, pickled vegetables, and gochujang',
617-
ingredients: ['grass-fed beef', 'gochujang', 'sesame oil', 'garlic', 'soy sauce', 'steamed rice', 'pickled vegetables', 'sesame seeds'],
618-
tags: ['df'],
616+
description: 'Korean marinated beef with steamed rice, pickled vegetables, fried egg, and gochujang',
617+
ingredients: ['grass-fed beef', 'gochujang', 'sesame oil', 'garlic', 'soy sauce', 'steamed rice', 'pickled vegetables', 'sesame seeds', 'egg'],
618+
tags: [],
619619
price: 28,
620620
sortPriority: 1,
621621
image: '/images/menu/plated/bulgulgibowls.png',
622622
nutrition: { calories: 728, protein: 53, carbs: 72, fat: 27, fiber: 6, servingSize: '1 bowl (525g)' },
623-
allergens: ['soy', 'sesame'],
623+
allergens: ['soy', 'sesame', 'eggs'],
624624
prepTime: 25,
625625
difficulty: 'easy',
626626
orderable: true,
@@ -881,14 +881,14 @@ export const galleryMenuItems: MenuItem[] = [
881881
{
882882
id: 'crispy-taiwanese-pork-chop',
883883
name: 'Crispy Taiwanese Pork Chop',
884-
description: 'Golden fried pork chop with five-spice, served with pickled vegetables and rice',
884+
description: 'Golden fried pork chop with five-spice, served with fried egg, pickled vegetables, and rice',
885885
ingredients: ['pork chop', 'five-spice powder', 'soy sauce', 'jasmine rice', 'pickled vegetables', 'fried shallots', 'vegetable oil', 'cornstarch', 'egg', 'garlic', 'salt', 'white pepper'],
886-
tags: ['df'],
886+
tags: [],
887887
price: 26,
888888
sortPriority: 4,
889889
image: '/images/menu/plated/crispytaiwaneseporkchop.png',
890890
nutrition: { calories: 750, protein: 46, carbs: 60, fat: 36, fiber: 4, servingSize: '1 plate (500g)' },
891-
allergens: ['gluten', 'soy'],
891+
allergens: ['gluten', 'soy', 'eggs'],
892892
prepTime: 30,
893893
difficulty: 'medium',
894894
orderable: true,
@@ -1076,7 +1076,7 @@ export const galleryMenuItems: MenuItem[] = [
10761076
name: 'Thai Basil Chicken',
10771077
description: 'Stir-fried chicken with Thai basil, chilies, and garlic over jasmine rice with a fried egg',
10781078
ingredients: ['chicken thighs', 'Thai basil', 'chilies', 'garlic', 'fish sauce', 'jasmine rice', 'egg', 'vegetable oil', 'oyster sauce', 'soy sauce', 'sugar', 'salt', 'white pepper'],
1079-
tags: ['gf', 'df'],
1079+
tags: ['gf'],
10801080
price: 26,
10811081
sortPriority: 2,
10821082
image: '/images/menu/plated/thaifriedbasilchicken.png',

0 commit comments

Comments
 (0)