From fdddf4e58c9150454abf419de0dc5a27f7154c54 Mon Sep 17 00:00:00 2001 From: yerimi00 Date: Thu, 12 Feb 2026 11:49:30 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EB=B3=80=EA=B2=BD=EC=82=AC=ED=95=AD?= =?UTF-8?q?=20=EC=9E=AC=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/routes/mypage/likes/likes-content.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/routes/mypage/likes/likes-content.tsx b/app/routes/mypage/likes/likes-content.tsx index 7782c4f..61063a0 100644 --- a/app/routes/mypage/likes/likes-content.tsx +++ b/app/routes/mypage/likes/likes-content.tsx @@ -432,9 +432,11 @@ export default function MyPageLikes() { -
- {brand.tags.join(" ")} -
+
+ {brand.tags.length > 0 + ? brand.tags.map((tag) => `#${tag}`).join(" ") + : ""} +
))