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 (