From 9a239a4f5cf4d7354af83d57f2b2cfa469664055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Tymczuk?= Date: Tue, 10 Sep 2024 10:53:01 +0200 Subject: [PATCH] chore(web): update the bridge onboarding sandbox endpoint (#6462) --- apps/web/src/config/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/config/index.ts b/apps/web/src/config/index.ts index a38f82e84fb..1e5ed7de812 100644 --- a/apps/web/src/config/index.ts +++ b/apps/web/src/config/index.ts @@ -92,7 +92,7 @@ if (IS_EE_AUTH_ENABLED && !CLERK_PUBLISHABLE_KEY) { throw new Error('Missing Clerk Publishable Key'); } -export const BRIDGE_SYNC_SAMPLE_ENDPOINT = 'https://deploy-preview-4--onboarding-sandbox.netlify.app/api/novu'; +export const BRIDGE_SYNC_SAMPLE_ENDPOINT = 'https://deploy-preview-6--onboarding-sandbox.netlify.app/api/novu'; /** * This is used for versioning the sandbox endpoints across revisions * On change, we should move the current one to the legacy list @@ -100,4 +100,5 @@ export const BRIDGE_SYNC_SAMPLE_ENDPOINT = 'https://deploy-preview-4--onboarding export const BRIDGE_ENDPOINTS_LEGACY_VERSIONS = [ 'https://onboarding-sandbox.netlify.app/api/novu', 'https://deploy-preview-1--onboarding-sandbox.netlify.app/api/novu', + 'https://deploy-preview-4--onboarding-sandbox.netlify.app/api/novu', ];