From 26e32d48dbb4e88d09352811981205356c13ea2c Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 14 Jun 2023 16:37:49 +0200 Subject: [PATCH] fix(ui): assist menu active status --- frontend/app/components/Assist/Assist.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Assist/Assist.tsx b/frontend/app/components/Assist/Assist.tsx index bb7656911..9d81f0161 100644 --- a/frontend/app/components/Assist/Assist.tsx +++ b/frontend/app/components/Assist/Assist.tsx @@ -17,7 +17,7 @@ interface Props extends RouteComponentProps { function Assist(props: Props) { const { history, siteId, isEnterprise } = props; const isAssist = history.location.pathname.includes('assist'); - const isRecords = history.location.pathname.includes('recordings'); + const isRecords = history.location.pathname.includes('offline-playback'); const redirect = (path: string) => { history.push(withSiteId(path, siteId));