Skip to content

Commit

Permalink
Merge pull request #35 from 001elijah/create-edit-forms
Browse files Browse the repository at this point in the history
fix shototam
  • Loading branch information
001elijah authored Jun 26, 2023
2 parents d99fe6e + aa22100 commit c5defa3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/components/TaskCard/TaskCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ export const TaskCard = ({

const closeModalChangeColumn = () => setIsModalChangeOpen(false);

const openModalEditCard = () => {
setIsModalEditOpen(true);
};
// const openModalEditCard = () => {
// setIsModalEditOpen(true);
// };
// const closeModalEditCard = () => {
// setIsModalEditOpen(false);
// };
Expand Down Expand Up @@ -108,7 +108,7 @@ export const TaskCard = ({
<TaskControlButton
icon="#icon-pencil"
onClick={() => {
openModalEditCard();
// openModalEditCard();
}}
/>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TasksColumnHeader/TasksColumnHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const TasksColumnHeader = ({ title, id }) => {
// const [isModalOpen, setIsModalOpen] = useState(false);

const openModalEditColumn = () => {
setIsModalOpen(true);
// setIsModalOpen(true);
};

// const closeModalEditColumn = () => setIsModalOpen(false);
Expand Down

0 comments on commit c5defa3

Please sign in to comment.