From 54bbe75ecc89d9526be677b0e747f00c5ced1714 Mon Sep 17 00:00:00 2001 From: caadiq Date: Sat, 10 Jan 2026 10:14:59 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B2=80=EC=83=89=20=EB=AA=A8=EB=93=9C?= =?UTF-8?q?=20=EC=A7=84=EC=9E=85=20=EC=8B=9C=20=EA=B8=B0=EC=A1=B4=20?= =?UTF-8?q?=EC=9D=BC=EC=A0=95=20=EC=88=A8=EA=B9=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - isSearchMode일 때 searchTerm 없으면 '검색어를 입력하세요' 표시 - 기존 날짜별 일정이 보이지 않도록 조건 수정 --- frontend/src/pages/mobile/public/Schedule.jsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/mobile/public/Schedule.jsx b/frontend/src/pages/mobile/public/Schedule.jsx index 393f94a..d3d6ad9 100644 --- a/frontend/src/pages/mobile/public/Schedule.jsx +++ b/frontend/src/pages/mobile/public/Schedule.jsx @@ -449,9 +449,14 @@ function MobileSchedule() { {/* 컨텐츠 영역 */}
- {isSearchMode && searchTerm ? ( - // 검색 결과 - 가상 스크롤 - searchLoading ? ( + {isSearchMode ? ( + // 검색 모드 + !searchTerm ? ( + // 검색어 입력 전 - 빈 상태 +
+ 검색어를 입력하세요 +
+ ) : searchLoading ? (