Skip to content

Commit

Permalink
fix: fixed glitchy movement on reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-Web3 committed Jul 24, 2023
1 parent 1308152 commit f61753f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Body: React.FC<{
{currentBoard?.status &&
!currentBoard.status.every(el => el.tasks.length === 0) && (
<DragDropContext onDragEnd={handleDragEnd}>
<motion.div layout className="body__boards">
<motion.div className="body__boards">
{currentBoard.status
.filter(el => el.tasks.length)
.map(el => (
Expand Down

0 comments on commit f61753f

Please sign in to comment.