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

View File

@@ -41,7 +41,7 @@ export const useStockLocation = (
) => {
const { data, ...rest } = useQuery({
queryFn: () => client.stockLocations.retrieve(id, query),
queryKey: stockLocationsQueryKeys.detail(id, query),
queryKey: stockLocationsQueryKeys.details(),
...options,
})