From 5435f536fce539fa6ad85e1115b3081367a619da Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Thu, 30 Mar 2023 14:23:35 +0200 Subject: [PATCH] fix(ui): fix ui issue --- .../shared/SessionListContainer/SessionListContainer.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/app/components/shared/SessionListContainer/SessionListContainer.tsx b/frontend/app/components/shared/SessionListContainer/SessionListContainer.tsx index bd340e4b0..f5144a9a6 100644 --- a/frontend/app/components/shared/SessionListContainer/SessionListContainer.tsx +++ b/frontend/app/components/shared/SessionListContainer/SessionListContainer.tsx @@ -4,19 +4,14 @@ import SessionHeader from './components/SessionHeader'; import NotesList from './components/Notes/NoteList'; import { connect } from 'react-redux'; import LatestSessionsMessage from './components/LatestSessionsMessage'; -import { clearCurrentSession } from "Duck/sessions"; function SessionListContainer({ activeTab, members, - clearCurrentSession, }: { activeTab: string; members: object[]; }) { - React.useEffect(() => { - clearCurrentSession() - }, []) return (