From d84dc0bad61e0121a52e8d6bb0e9c7f83a6797a5 Mon Sep 17 00:00:00 2001 From: Bel Curcio Date: Mon, 14 Jun 2021 14:49:04 -0300 Subject: [PATCH] default to local if no env available --- framework/commerce/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/commerce/config.js b/framework/commerce/config.js index 045275400..fac3ff680 100644 --- a/framework/commerce/config.js +++ b/framework/commerce/config.js @@ -18,7 +18,7 @@ function getProviderName() { ? 'shopify' : process.env.NEXT_PUBLIC_SWELL_STORE_ID ? 'swell' - : null) + : 'local') ) }