diff --git a/apps/storefront/src/components/B3StoreContainer.tsx b/apps/storefront/src/components/B3StoreContainer.tsx index 029c0336..9a648b90 100644 --- a/apps/storefront/src/components/B3StoreContainer.tsx +++ b/apps/storefront/src/components/B3StoreContainer.tsx @@ -57,11 +57,15 @@ export default function B3StoreContainer(props: B3StoreContainerProps) { platform, translationVersion, } = storeInfo - - const bcUrl = - platform !== 'bigcommerce' - ? `https://store-${storeHash}-${channelId}.mybigcommerce.com` - : '' + let bcUrl = '' + + if (platform !== 'bigcommerce') { + if (channelId === 1) { + bcUrl = `https://store-${storeHash}.mybigcommerce.com` + } else { + bcUrl = `https://store-${storeHash}-${channelId}.mybigcommerce.com` + } + } const isEnabled = storeBasicInfo?.multiStorefrontEnabled ? storeEnabled : true