Skip to content

Commit

Permalink
fix:add missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Dec 19, 2023
1 parent f3a0475 commit e4e52d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/lib/features/team-members-kanban-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const KanbanView = ({ kanbanBoardTasks }: { kanbanBoardTasks: IKanban}) =

//update column order in server side
reorderedItem.map((item: string, index: number) => {
reorderStatus(item, index);
return reorderStatus(item, index);
});

setColumn(reorderedItem);
Expand Down

0 comments on commit e4e52d5

Please sign in to comment.