diff --git a/apps/app/components/core/board-view/single-board.tsx b/apps/app/components/core/board-view/single-board.tsx index 5d33b15bf..d0fe1834a 100644 --- a/apps/app/components/core/board-view/single-board.tsx +++ b/apps/app/components/core/board-view/single-board.tsx @@ -66,45 +66,45 @@ export const SingleBoard: React.FC = ({ }, [currentState]); return ( -
-
- - {isCollapsed && ( - - {(provided, snapshot) => ( -
- {orderBy !== "sort_order" && ( - <> -
-
- This board is ordered by{" "} - {replaceUnderscoreIfSnakeCase( - orderBy ? (orderBy[0] === "-" ? orderBy.slice(1) : orderBy) : "created_at" - )} -
- - )} +
+ + {isCollapsed && ( + + {(provided, snapshot) => ( +
+ {orderBy !== "sort_order" && ( + <> +
+
+ This board is ordered by{" "} + {replaceUnderscoreIfSnakeCase( + orderBy ? (orderBy[0] === "-" ? orderBy.slice(1) : orderBy) : "created_at" + )} +
+ + )} +
{groupedByIssues?.[groupTitle].map((issue, index) => ( = ({ > {provided.placeholder} +
+
{type === "issue" ? (
- )} - - )} -
+
+ )} +
+ )}
); };