Skip to content

Commit

Permalink
Update RestaurantSchedule.js
Browse files Browse the repository at this point in the history
The dinner hours at the restaurant have changed from 18:00-20:00 to the new hours of 17:30-19:30.
  • Loading branch information
georgemois23 authored Sep 26, 2024
1 parent 1ca408a commit 9cdead4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/assets/data/RestaurantSchedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ export const RESTAURANT_HOURS = {
for_dinner: {
on_weekdays: {
start: {
hours: 18,
minutes: 0,
hours: 17,
minutes: 30,
},
end: {
hours: 20,
minutes: 0,
hours: 19,
minutes: 30,
},
},
on_weekend: {
start: {
hours: 18,
minutes: 0,
hours: 17,
minutes: 30,
},
end: {
hours: 20,
minutes: 0,
hours: 19,
minutes: 30,
},
},
},
Expand Down Expand Up @@ -71,12 +71,12 @@ export const schedule = {
weekdays: {
breakfast: { start: "08:00", end: "09:30" },
lunch: { start: "12:30", end: "15:30" },
dinner: { start: "18:00", end: "20:00" },
dinner: { start: "17:30", end: "19:30" },
},
weekendsAndHolidays: {
breakfast: { start: "08:00", end: "09:30" },
lunch: { start: "13:00", end: "15:30" },
dinner: { start: "18:00", end: "20:00" },
dinner: { start: "17:30", end: "19:30" },
},
};

Expand Down

0 comments on commit 9cdead4

Please sign in to comment.