From ffc2f78045c40403f73d9092dc051fa1fa3c19be Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Sun, 27 Feb 2022 19:53:36 +0100 Subject: [PATCH] fix(ui) - player live check --- frontend/app/components/Session/Session.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/app/components/Session/Session.js b/frontend/app/components/Session/Session.js index 0138e7e50..210a24bff 100644 --- a/frontend/app/components/Session/Session.js +++ b/frontend/app/components/Session/Session.js @@ -16,11 +16,11 @@ const SESSIONS_ROUTE = sessionsRoute(); function Session({ sessionId, loading, - hasErrors, + hasErrors, session, fetchSession, - fetchSlackList, - hasSessionsPath + fetchSlackList, + hasSessionsPath }) { usePageTitle("OpenReplay Session Player"); useEffect(() => { @@ -51,7 +51,7 @@ function Session({ { session.isIOS ? - : (session.live && !hasSessionsPath ? : ) + : }