Skip to content

Commit

Permalink
Fix : 정렬 필터 부분 초기 텍스트 안보이는 것 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ssumai-kr committed Jul 18, 2024
1 parent 8b63471 commit 8f97ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/PriceFilterBtn/PriceFilterBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function PriceFilterBtn() {
onClick={() => setShowMenuList((prev) => !prev)}
>
<p className="text-[18px] t:text-[12px] m:text-[10px] text-var-green2">
{isClient ? sortedName : '정렬'}
{sortedName ? sortedName : '정렬'}
</p>
<Image
src={filterIcon}
Expand Down

0 comments on commit 8f97ecf

Please sign in to comment.