From 8c3a0fc1c2c73034206f03326ef2b4959fdc1a23 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 17 Oct 2025 17:14:55 +0900 Subject: [PATCH] =?UTF-8?q?fix(creator-profile):=20=EC=B5=9C=EC=8B=A0=20?= =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=A0=9C=EB=AA=A9=202=EC=A4=84?= =?UTF-8?q?=20=EC=A0=9C=ED=95=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Explorer/Profile/UserProfileView.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift index 83a0402..b680b9d 100644 --- a/SodaLive/Sources/Explorer/Profile/UserProfileView.swift +++ b/SodaLive/Sources/Explorer/Profile/UserProfileView.swift @@ -149,12 +149,14 @@ struct UserProfileView: View { .font(.custom(Font.preMedium.rawValue, size: 18)) .foregroundColor(Color.white) .multilineTextAlignment(.leading) + .lineLimit(2) + .truncationMode(.tail) HStack(spacing: 14) { HStack(spacing: 6) { Image("ic_heart_777") .resizable() - .frame(width: 24, height: 24) + .frame(width: 18, height: 18) Text("\(item.likeCount)") .font(.custom(Font.preMedium.rawValue, size: 18)) @@ -164,7 +166,7 @@ struct UserProfileView: View { HStack(spacing: 6) { Image("ic_message_square_777") .resizable() - .frame(width: 24, height: 24) + .frame(width: 18, height: 18) Text("\(item.commentCount)") .font(.custom(Font.preMedium.rawValue, size: 18))