From 1234afe9ae1db1f14351e4f63a948000b7be1636 Mon Sep 17 00:00:00 2001 From: Sinane Date: Tue, 17 Oct 2023 10:55:21 +0200 Subject: [PATCH] fix(paywall): :rotating_light: set default link api url for wallet connect --- apps/paywall/vite.config.ts | 2 ++ apps/shop/vite.config.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/apps/paywall/vite.config.ts b/apps/paywall/vite.config.ts index a020d329..679f35c0 100644 --- a/apps/paywall/vite.config.ts +++ b/apps/paywall/vite.config.ts @@ -30,6 +30,8 @@ const envVars = { WALLET_CONNECT_PROJECT_ID: undefined, MONTHLY_PRO_PLAN_CHECKOUT_LINK: undefined, YEARLY_PRO_PLAN_CHECKOUT_LINK: undefined, + LINK_API_URL: 'https://www.walletlink.org', + SDK_VERSION: 'unknown', }; const dirname = __dirname; diff --git a/apps/shop/vite.config.ts b/apps/shop/vite.config.ts index a5cfc1aa..47a92c2c 100644 --- a/apps/shop/vite.config.ts +++ b/apps/shop/vite.config.ts @@ -34,6 +34,7 @@ const envVars = { MONTHLY_PRO_PLAN_CHECKOUT_LINK: undefined, YEARLY_PRO_PLAN_CHECKOUT_LINK: undefined, LINK_API_URL: 'https://www.walletlink.org', + SDK_VERSION: 'unknown', }; const dirname = __dirname;