diff --git a/web/dashboard/src/components/pos2/pos2-screen.tsx b/web/dashboard/src/components/pos2/pos2-screen.tsx index 7f94979..6d8b4b2 100644 --- a/web/dashboard/src/components/pos2/pos2-screen.tsx +++ b/web/dashboard/src/components/pos2/pos2-screen.tsx @@ -725,9 +725,10 @@ function Pos2PaySheet({ onConfirm(payments.filter((p) => p.amount > 0), redeem); }; + // Card listed first (most common in Iran); Cash stays the pre-selected default. const TABS = [ - { id: "cash", name: "نقدی", icon: Banknote }, { id: "card", name: "کارت", icon: CreditCard }, + { id: "cash", name: "نقدی", icon: Banknote }, { id: "split", name: "تقسیم", icon: SplitSquareHorizontal }, ] as const;