diff --git a/web/sidebar/community-drawer-item-handlers.react.js b/web/sidebar/community-drawer-item-handlers.react.js --- a/web/sidebar/community-drawer-item-handlers.react.js +++ b/web/sidebar/community-drawer-item-handlers.react.js @@ -7,7 +7,6 @@ import type { CommunityDrawerItemHandler } from './community-drawer-item-handler.react.js'; import { updateCalendarCommunityFilter } from '../redux/action-types.js'; -import { useCommunityIsPicked } from '../selectors/calendar-selectors.js'; import { useOnClickThread, useThreadIsActive, @@ -45,7 +44,7 @@ payload: threadInfo.id, }); }, [dispatch, threadInfo.id]); - const isActive = useCommunityIsPicked(threadInfo.id); + const isActive = false; const handler = React.useMemo(() => ({ onClick, isActive }), [ onClick,