Reverting in favor of correcting in new Production Board

Signed-off-by: Allan Carr <allan.carr@thinkimex.com>
This commit is contained in:
Allan Carr
2024-07-31 15:22:22 -07:00
parent 92ee5169ab
commit 10ff8fc432

View File

@@ -1,12 +1,6 @@
import React from "react";
import NoteUpsertModal from "../../components/note-upsert-modal/note-upsert-modal.container";
import ProductionBoardKanbanContainer from "../../components/production-board-kanban/production-board-kanban.container";
export default function ProductionBoardComponent() {
return (
<>
<NoteUpsertModal />
<ProductionBoardKanbanContainer />
</>
);
return <ProductionBoardKanbanContainer />;
}