From c50b77ff8d33c956dd9075ca4d2e96dd656a9b77 Mon Sep 17 00:00:00 2001 From: Nuzhy-Deriv Date: Thu, 8 Jan 2026 15:52:37 +0800 Subject: [PATCH] fix: language issue --- src/js/footer/signupRedirection/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/footer/signupRedirection/index.js b/src/js/footer/signupRedirection/index.js index 5329048..fdfa34c 100644 --- a/src/js/footer/signupRedirection/index.js +++ b/src/js/footer/signupRedirection/index.js @@ -35,7 +35,7 @@ document.addEventListener("DOMContentLoaded", function () { link.href === `${selectorUrl}/${current_language}/landing/signup` ); links.forEach((link) => { - link.href = `${replaceUrl}/signup?lang=${language}`; + link.href = `${replaceUrl}/signup?lang=${current_language}`; }); };