- Begin to integrate DND with trello

- Resolve all ESLint issues in DND

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-06-13 17:52:03 -04:00
parent a8f2ca5643
commit 4602648fe5
123 changed files with 458 additions and 253 deletions

View File

@@ -10,5 +10,4 @@ export const updateCards = createAction("UPDATE_CARDS");
export const updateLanes = createAction("UPDATE_LANES");
export const updateLane = createAction("UPDATE_LANE");
export const paginateLane = createAction("PAGINATE_LANE");
export const moveLane = createAction("MOVE_LANE");
export const removeLane = createAction("REMOVE_LANE");

View File

@@ -21,8 +21,6 @@ const boardReducer = (state = { lanes: [] }, action) => {
return Lh.updateLane(state, payload);
case "PAGINATE_LANE":
return Lh.paginateLane(state, payload);
case "MOVE_LANE":
return Lh.moveLane(state, payload);
case "REMOVE_LANE":
return Lh.removeLane(state, payload);
case "ADD_LANE":