diff --git a/web/core/components/project-states/group-list.tsx b/web/core/components/project-states/group-list.tsx index 1fbc8f1da..dbd33238f 100644 --- a/web/core/components/project-states/group-list.tsx +++ b/web/core/components/project-states/group-list.tsx @@ -15,7 +15,13 @@ type TGroupList = { export const GroupList: FC = observer((props) => { const { workspaceSlug, projectId, groupedStates } = props; // states - const [groupsExpanded, setGroupsExpanded] = useState[]>([]); + const [groupsExpanded, setGroupsExpanded] = useState[]>([ + "backlog", + "unstarted", + "started", + "completed", + "cancelled", + ]); const handleGroupCollapse = (groupKey: TStateGroups) => { setGroupsExpanded((prev) => {