From 7ef7c0b3a01c77d90dd74c1ad0f86bbd4727b67e Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 15 Dec 2023 11:37:12 +0100 Subject: [PATCH] fix(ui) - 143: issue with session back button --- .../Session/Player/ReplayPlayer/PlayerBlockHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx b/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx index b063fc72b..0c15f2f1b 100644 --- a/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx +++ b/frontend/app/components/Session/Player/ReplayPlayer/PlayerBlockHeader.tsx @@ -54,7 +54,7 @@ function PlayerBlockHeader(props: any) { const backHandler = () => { if ( sessionPath.pathname === history.location.pathname || - sessionPath.pathname.includes('/session/') + sessionPath.pathname.includes('/session/') || sessionPath.pathname.includes('/assist/') ) { history.push(withSiteId(SESSIONS_ROUTE, siteId)); } else {