From 323b5b4220215da024f36674373bb66f86640722 Mon Sep 17 00:00:00 2001 From: earthyoung Date: Sun, 21 Jun 2026 17:37:04 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EC=84=B8=EC=85=98=20=EC=8B=9C?= =?UTF-8?q?=EA=B0=84=ED=91=9C=EA=B0=80=20=EB=92=A4=EB=A1=9C=EA=B0=80?= =?UTF-8?q?=EA=B8=B0=20=EC=95=A1=EC=85=98=20=EC=8B=9C=20=EC=83=81=ED=83=9C?= =?UTF-8?q?=EB=A5=BC=20=EC=9C=A0=EC=A7=80=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/mdx_components/session_timetable.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/common/src/components/mdx_components/session_timetable.tsx b/packages/common/src/components/mdx_components/session_timetable.tsx index 56597e9..26f0b77 100644 --- a/packages/common/src/components/mdx_components/session_timetable.tsx +++ b/packages/common/src/components/mdx_components/session_timetable.tsx @@ -168,7 +168,7 @@ export const SessionTimeTable: FC = ErrorBoundary.with const roomCount = Object.keys(rooms).length; const sortedRoomList = Object.keys(rooms).sort(); - const selectedDate = confDate || dates[0]; + const [selectedDate, setSelectedDate] = useState(confDate || dates[0]); const selectedTableData = timeTableData[selectedDate]; let breakCount = 0; @@ -186,7 +186,15 @@ export const SessionTimeTable: FC = ErrorBoundary.with {dates.map((date, i) => { const dateStr = DateTime.fromISO(date).setLocale(language).toLocaleString({ weekday: "long", month: "long", day: "numeric" }); return ( -