fix: 마지막 검색 결과 항목 여백 제거
This commit is contained in:
parent
043f8b465d
commit
92782e9022
1 changed files with 1 additions and 1 deletions
|
|
@ -859,7 +859,7 @@ function Schedule() {
|
||||||
transform: `translateY(${virtualItem.start}px)`,
|
transform: `translateY(${virtualItem.start}px)`,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div className="pb-4">
|
<div className={virtualItem.index < filteredSchedules.length - 1 ? "pb-4" : ""}>
|
||||||
<div
|
<div
|
||||||
onClick={() => handleScheduleClick(schedule)}
|
onClick={() => handleScheduleClick(schedule)}
|
||||||
className="flex items-stretch bg-white rounded-2xl shadow-sm hover:shadow-md transition-shadow overflow-hidden cursor-pointer h-[120px]"
|
className="flex items-stretch bg-white rounded-2xl shadow-sm hover:shadow-md transition-shadow overflow-hidden cursor-pointer h-[120px]"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue