fix(admin): Exclude prices from PriceLists overview (#4536)

* fix(admin): Exclude Prices from PriceLists overiew

* Create polite-vans-hide.md
This commit is contained in:
Oli Juhl
2023-07-27 08:45:54 +02:00
committed by GitHub
parent 8a1aac028e
commit f561601bf6
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
---
"@medusajs/admin-ui": patch
"@medusajs/admin": patch
---
fix(admin): Exclude prices from PriceLists overview

View File

@@ -11,7 +11,7 @@ import { useLocation } from "react-router-dom"
*/
const DEFAULT_PAGE_SIZE = 15
const defaultQueryProps = {
expand: "customer_groups,prices",
expand: "customer_groups",
offset: 0,
limit: DEFAULT_PAGE_SIZE,
}