diff --git a/src/features/cart/lib/api.ts b/src/features/cart/lib/api.ts
index 18938b6..869e86a 100644
--- a/src/features/cart/lib/api.ts
+++ b/src/features/cart/lib/api.ts
@@ -58,17 +58,15 @@ export interface OrderCreateBody {
currency_code: string;
owner_person_code: string;
note: string;
- order_products: [
- {
- inventory_kind: string;
- product_code: string;
- on_balance: string;
- order_quant: number;
- price_type_code: string;
- product_price: string;
- warehouse_code: string;
- },
- ];
+ order_products: {
+ inventory_kind: string;
+ product_code: string;
+ on_balance: string;
+ order_quant: number;
+ price_type_code: string;
+ product_price: string;
+ warehouse_code: string;
+ }[];
}[];
}
diff --git a/src/features/cart/ui/OrderPage.tsx b/src/features/cart/ui/OrderPage.tsx
index 408a9ef..136b419 100644
--- a/src/features/cart/ui/OrderPage.tsx
+++ b/src/features/cart/ui/OrderPage.tsx
@@ -549,21 +549,22 @@ const OrderPage = () => {
{item.quantity} x{' '} - {formatPrice(item.product_price, true)} + {formatPrice(item.product.prices[0].price, true)}
{formatPrice( - item.product_price * item.quantity, + Number(item.product.prices[0].price) * + item.quantity, true, )}