diff --git a/web/app/support/closed/page.tsx b/web/app/support/chat/closed/page.tsx similarity index 100% rename from web/app/support/closed/page.tsx rename to web/app/support/chat/closed/page.tsx diff --git a/web/components/kefu/close-navigation.test.mjs b/web/components/kefu/close-navigation.test.mjs index 7ef041e..5a6bbbb 100644 --- a/web/components/kefu/close-navigation.test.mjs +++ b/web/components/kefu/close-navigation.test.mjs @@ -25,5 +25,5 @@ async function loadCloseNavigation() { test("standalone close navigates to the non-bootstrapping closed page", async () => { const { getStandaloneClosedUrl } = await loadCloseNavigation() - assert.equal(getStandaloneClosedUrl(), "/support/closed") + assert.equal(getStandaloneClosedUrl(), "/support/chat/closed") }) diff --git a/web/components/kefu/close-navigation.ts b/web/components/kefu/close-navigation.ts index 9e37aee..e9544fb 100644 --- a/web/components/kefu/close-navigation.ts +++ b/web/components/kefu/close-navigation.ts @@ -1,4 +1,4 @@ -export const KEFU_CLOSED_PATH = "/support/closed" +export const KEFU_CLOSED_PATH = "/support/chat/closed" export function getStandaloneClosedUrl() { return KEFU_CLOSED_PATH