diff --git a/ghost/portal/src/utils/helpers.js b/ghost/portal/src/utils/helpers.js index b2ec520d0a..cb69d3cf11 100644 --- a/ghost/portal/src/utils/helpers.js +++ b/ghost/portal/src/utils/helpers.js @@ -141,7 +141,7 @@ export function hasMultipleProducts({site = {}}) { const { products = [] } = site || {}; - if (products?.length > 0) { + if (products?.length > 1) { return true; } return false;