From c9ac56416ee73b1fd531db86c5203c61a7c2e0b7 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Mon, 20 Jan 2025 16:12:40 +0700 Subject: [PATCH] fixing landing redirect --- src/views/MainLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/MainLayout.vue b/src/views/MainLayout.vue index c478c0c..fc60efa 100644 --- a/src/views/MainLayout.vue +++ b/src/views/MainLayout.vue @@ -236,7 +236,7 @@ function onInfo() { // landing page redirect const landingPageUrl = ref(getLandingUrl()); function getLandingUrl() { - return `${configParam.landingPageUrl}/landing`; + return configParam.landingPageUrl; }