From 857e2c17cea9722d520a887dcda031833a4285b8 Mon Sep 17 00:00:00 2001 From: Kyle McCullen Date: Wed, 10 Dec 2025 14:18:42 -0500 Subject: [PATCH] fix 404 not found error when checkout mode is on --- src/app/shared/services/server.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/services/server.service.ts b/src/app/shared/services/server.service.ts index 76f69ff..8b8d7d1 100644 --- a/src/app/shared/services/server.service.ts +++ b/src/app/shared/services/server.service.ts @@ -25,6 +25,6 @@ export class ServerService { const subdomain = this.settingsService.settings().developerMode ? 'staging' : 'guardrail'; - return `https://${subdomain}.branta.pro/v2`; + return `https://${subdomain}.branta.pro`; } }