diff --git a/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx b/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx index cd59b40aac38a..06432bcd3dbd7 100644 --- a/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx +++ b/packages/admin/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx @@ -555,7 +555,7 @@ const Cost = ({ const CostBreakdown = ({ order, }: { - order: AdminOrder & { region: AdminRegion } + order: AdminOrder & { region?: AdminRegion | null } }) => { const { t } = useTranslation() const [isTaxOpen, setIsTaxOpen] = useState(false)