fix(dashboard): location UI fixes (#7288)

* fix: a few UI fixes

* fix: domain name

* feat: edit service zone areas

* feat: edit shipping option prices

* fix: sorting
This commit is contained in:
Frane Polić
2024-05-16 19:34:49 +02:00
committed by GitHub
parent a775d57255
commit 694434d51a
18 changed files with 811 additions and 30 deletions
@@ -120,6 +120,14 @@ export interface UpdateShippingOptionDTO {
id: string
}
)[]
/**
* The shipping option pricing
*/
prices: (
| { currency_code: string; amount: number; id?: string }
| { region_id: string; amount: number; id?: string }
)[]
}
/**