diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ebcf167..441a948ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ All notable, unreleased changes to this project will be documented in this file. - Fix variant stock input - #377 by @dominik-zeglen - Add filtering to views - #361 by @dominik-zeglen - Do not render password change if authenticating - #378 by @dominik-zeglen +- Fix crash when one product is selected - #391 by @dominik-zeglen ## 2.0.0 diff --git a/src/products/index.tsx b/src/products/index.tsx index 2d04e98a0..9db230308 100644 --- a/src/products/index.tsx +++ b/src/products/index.tsx @@ -34,6 +34,7 @@ const ProductList: React.FC> = ({ location }) => { ...qs, categories: getArrayQueryParam(qs.categories), collections: getArrayQueryParam(qs.collections), + ids: getArrayQueryParam(qs.ids), productTypes: getArrayQueryParam(qs.productTypes) }, ProductListUrlSortField