From f6a0e2eea082e662a419295bcb798135ceb24f46 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Thu, 30 Mar 2023 22:30:13 +0200 Subject: [PATCH] fix(frontend): Assist credentials url (#1082) Signed-off-by: rjshrjndrn --- frontend/app/components/Session/LivePlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session/LivePlayer.tsx b/frontend/app/components/Session/LivePlayer.tsx index f558c3103..b59f509dc 100644 --- a/frontend/app/components/Session/LivePlayer.tsx +++ b/frontend/app/components/Session/LivePlayer.tsx @@ -51,7 +51,7 @@ function LivePlayer({ }, }; if (isEnterprise) { - new APIClient().get('/config/assist/credentials').then(r => r.json()) + new APIClient().get('/assist/credentials').then(r => r.json()) .then(({ data }) => { const [player, store] = createLiveWebPlayer(sessionWithAgentData, data, (state) => makeAutoObservable(state)