Skip to content

Commit

Permalink
fix: 이름이 수정되어도 수정하기 버튼이 disabled되는 버그
Browse files Browse the repository at this point in the history
  • Loading branch information
llqqssttyy committed Aug 21, 2024
1 parent 542cdef commit 877ca48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function ProcessModifyForm({

<C.ButtonWrapper>
<Button
disabled={process.description === formState.description}
disabled={process.name === formState.name && process.description === formState.description}
type="submit"
color="white"
size="fillContainer"
Expand Down

0 comments on commit 877ca48

Please sign in to comment.