Merge branch 'main' into dev
This commit is contained in:
commit
1b531b93b0
1 changed files with 5 additions and 0 deletions
|
|
@ -4,16 +4,21 @@ 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;
|
||||
fetchMembers: () => void;
|
||||
members: object[];
|
||||
clearCurrentSession: () => void;
|
||||
}) {
|
||||
React.useEffect(() => {
|
||||
clearCurrentSession()
|
||||
}, [])
|
||||
return (
|
||||
<div className="widget-wrapper">
|
||||
<SessionHeader />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue