diff --git a/src/components/sidebar/Sidebar.tsx b/src/components/sidebar/Sidebar.tsx index ea49f48..a451e67 100644 --- a/src/components/sidebar/Sidebar.tsx +++ b/src/components/sidebar/Sidebar.tsx @@ -16,7 +16,7 @@ import SidebarUser from "./SidebarUser"; // TODO: toolbar on top of sidebar since it goes under the navbar -const drawerWidth = 200; +const drawerWidth = "200px"; const Sidebar: React.FC = () => { const [group, setGroup] = useState("Favorites"); @@ -33,15 +33,16 @@ const Sidebar: React.FC = () => { selectUserStatuses(state, groupMembersUuids) ); - console.log(group); - return ( = ({ user, status }: Props) => { return ( - + = ({ user, status }: Props) => { )} sx={{ p: 1 }} /> - + {user.name} {status.inMeeting @@ -28,7 +28,9 @@ const SidebarUser: React.FC = ({ user, status }: Props) => { : MeetingStatus.NOT_IN_MEETING} - + + + ); };