From c7f344737c19f1b3217742677c277c08538917a3 Mon Sep 17 00:00:00 2001 From: Eunseo Sim <55528304+simeunseo@users.noreply.github.com> Date: Sun, 23 Jun 2024 01:34:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9A=B0=EC=84=A0=EC=88=9C=EC=9C=84=20?= =?UTF-8?q?=EB=93=9C=EB=A1=AD=EB=8B=A4=EC=9A=B4=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=EC=9D=B4=20=EC=95=88=EB=90=98=EB=8A=94=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/selectPriority/PriorityDropdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/selectSchedule/components/selectPriority/PriorityDropdown.tsx b/src/pages/selectSchedule/components/selectPriority/PriorityDropdown.tsx index d8c2919d..b7dd6a63 100644 --- a/src/pages/selectSchedule/components/selectPriority/PriorityDropdown.tsx +++ b/src/pages/selectSchedule/components/selectPriority/PriorityDropdown.tsx @@ -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; });