Skip to content

Commit

Permalink
💄 Fix: 10분 단위 시간 수정으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
a-honey committed Jul 30, 2024
1 parent 9a00d59 commit ba47b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/TeamManage/components/DateChangeModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const DateChangeModal = ({ content, updateTaskItems, currentUser, id, startAt, e
alignItems='center'
borderRight='1px solid #CCD6E3'
onClick={() => {
setChangeTime((prev) => ({ ...prev, minutes: prev.minutes - 1 }));
setChangeTime((prev) => ({ ...prev, minutes: prev.minutes - 10 }));
}}
>
-
Expand Down Expand Up @@ -194,7 +194,7 @@ const DateChangeModal = ({ content, updateTaskItems, currentUser, id, startAt, e
alignItems='center'
borderLeft='1px solid #CCD6E3'
onClick={() => {
setChangeTime((prev) => ({ ...prev, minutes: prev.minutes + 1 }));
setChangeTime((prev) => ({ ...prev, minutes: prev.minutes + 10 }));
}}
>
+
Expand Down

0 comments on commit ba47b45

Please sign in to comment.