feat(freight-web): restrict booking currency to ETB and portal ETB payments to CBE bill only

This commit is contained in:
Marshal
2026-08-08 10:47:48 +00:00
parent a05753f4a6
commit 229d9c6651
9 changed files with 31 additions and 52 deletions

View File

@@ -529,10 +529,7 @@ export default function NewBookingPage() {
/>
<Select
label="Payment currency"
data={[
{ value: "ETB", label: "ETB — Birr" },
{ value: "USD", label: "USD — Dollar" },
]}
data={[{ value: "ETB", label: "ETB — Birr" }]}
value={paymentCurrency}
onChange={(v) => setPaymentCurrency(v ?? "ETB")}
/>