From 75f521e2cdc7d43144ef5f85e4234fa27e4f1e35 Mon Sep 17 00:00:00 2001 From: erio Date: Sun, 1 Mar 2026 14:22:17 +0800 Subject: [PATCH] fix: add dark prop to OrderStatus component --- src/components/OrderStatus.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/OrderStatus.tsx b/src/components/OrderStatus.tsx index 45c5759..ad779d6 100644 --- a/src/components/OrderStatus.tsx +++ b/src/components/OrderStatus.tsx @@ -3,6 +3,7 @@ interface OrderStatusProps { status: string; onBack: () => void; + dark?: boolean; } const STATUS_CONFIG: Record = { @@ -44,7 +45,7 @@ const STATUS_CONFIG: Record