diff --git a/packages/manager/apps/container/src/container/livechat/LiveChat.spec.tsx b/packages/manager/apps/container/src/container/livechat/LiveChat.spec.tsx index 426bbd9d8265..b226e2fe028d 100644 --- a/packages/manager/apps/container/src/container/livechat/LiveChat.spec.tsx +++ b/packages/manager/apps/container/src/container/livechat/LiveChat.spec.tsx @@ -112,7 +112,7 @@ describe('LiveChat.component', {}, () => { // TODO: Change url after the livechat is ready expect(liveChatIFrame).toHaveAttribute( 'src', - `https://chatbot.ovhcloud.com/livechat-manager/STD/FR_fr/docs/index2.html?v=${format(new Date(), 'yy-MM-dd')}`, + `https://chatbot.ovhcloud.com/livechat-manager/static/STD/FR_fr/docs/index2.html?v=${format(new Date(), 'yy-MM-dd')}`, ); }); diff --git a/packages/manager/apps/container/src/container/livechat/liveChat.constants.ts b/packages/manager/apps/container/src/container/livechat/liveChat.constants.ts index 4aee343902ac..c9cbb66cbb99 100644 --- a/packages/manager/apps/container/src/container/livechat/liveChat.constants.ts +++ b/packages/manager/apps/container/src/container/livechat/liveChat.constants.ts @@ -6,5 +6,5 @@ export const CHAT_TYPE_STORAGE_KEY = 'chat_type'; export const ADRIELLY_CHAT_ORIGIN = 'https://chatbot.ovhcloud.com'; export function adriellyChatUrl(customerLevel: string, subsidiary: string, language: string): string { - return `https://chatbot.ovhcloud.com/livechat-manager/${customerLevel}/${subsidiary}_${language}/docs/index2.html`; + return `https://chatbot.ovhcloud.com/livechat-manager/static/${customerLevel}/${subsidiary}_${language}/docs/index2.html`; }