From 97ca85d8788c53f90df5900acb9410c170429037 Mon Sep 17 00:00:00 2001 From: Orel Yosupov <85583144+Orel6505@users.noreply.github.com> Date: Thu, 16 Apr 2026 17:55:53 +0300 Subject: [PATCH] Fix terms and privacy URLs links in Footer component (#6124) Fix the issue #6104 --- frontend/src/core/components/shared/Footer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/core/components/shared/Footer.tsx b/frontend/src/core/components/shared/Footer.tsx index c83d062239..62be10a15f 100644 --- a/frontend/src/core/components/shared/Footer.tsx +++ b/frontend/src/core/components/shared/Footer.tsx @@ -36,8 +36,8 @@ export default function Footer({ const { showCookiePreferences } = useCookieConsent({ analyticsEnabled: finalAnalyticsEnabled, forceLightMode }); // Default URLs - const defaultTermsUrl = "https://www.stirling.com/legal/terms-of-service"; - const defaultPrivacyUrl = "https://www.stirling.com/legal/privacy-policy"; + const defaultTermsUrl = "https://www.stirling.com/terms"; + const defaultPrivacyUrl = "https://www.stirling.com/privacy"; const defaultAccessibilityUrl = "https://www.stirling.com/accessibility"; // Use provided URLs or fall back to defaults