Skip to content

Commit

Permalink
fix: 우선순위 드롭다운 수정이 안되는 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
simeunseo committed Jun 22, 2024
1 parent c3fb342 commit c7f3447
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function PriorityDropdown() {
setSelectedSlots((prev: SelectedSlotType) => {
const updatedSelectedSlots = Object.entries(prev).map(([key, value]) => {
if (value.priority === temp) {
return { ...value, prority: 0 };
return { ...value, priority: 0 };
}
return value;
});
Expand Down

0 comments on commit c7f3447

Please sign in to comment.