Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
motocarota committed Jul 27, 2024
1 parent b51a371 commit a900713
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/view/[menuId]/+page.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { error } from '@sveltejs/kit';
import customers from '../../../menus.js'
import menus from '../../../menus.js'

/** @type {import('./$types').PageServerLoad} */
export function load({ params }) {
const data = customers[params.menuId];
const data = menus[params.menuId];
if (data) {
return {
...data,
Expand Down

0 comments on commit a900713

Please sign in to comment.