diff --git a/src/components/customer/CartPeekDrawer.tsx b/src/components/customer/CartPeekDrawer.tsx index 80c017e..dea33b7 100644 --- a/src/components/customer/CartPeekDrawer.tsx +++ b/src/components/customer/CartPeekDrawer.tsx @@ -47,12 +47,14 @@ export const CartPeekDrawer: React.FC = ({ anchor="bottom" open={open} onClose={onClose} - PaperProps={{ - sx: { - borderTopLeftRadius: 20, - borderTopRightRadius: 20, - maxHeight: '78vh', - bgcolor: '#fff', + slotProps={{ + paper: { + sx: { + borderTopLeftRadius: 20, + borderTopRightRadius: 20, + maxHeight: '78vh', + bgcolor: '#fff', + }, }, }} > diff --git a/src/components/customer/TableLandingView.tsx b/src/components/customer/TableLandingView.tsx index 5315aef..b6d4f8d 100644 --- a/src/components/customer/TableLandingView.tsx +++ b/src/components/customer/TableLandingView.tsx @@ -443,7 +443,7 @@ export const TableLandingView: React.FC = ({ ))} diff --git a/src/components/kds/KDSKanban.tsx b/src/components/kds/KDSKanban.tsx index 9f6d741..be92d6c 100644 --- a/src/components/kds/KDSKanban.tsx +++ b/src/components/kds/KDSKanban.tsx @@ -138,7 +138,7 @@ export const KDSKanban: React.FC = ({ {/* 4 Column Kanban Board Grid */} - + {columns.map((col) => { const colOrders = filteredOrders.filter((o) => o.status === col.status); return (