fix(fantalk): 신고 문구와 빈 상태 표시를 수정한다

This commit is contained in:
Yu Sung
2026-08-26 15:11:55 +09:00
parent 32ca4e121a
commit 05b86bf314
5 changed files with 131 additions and 10 deletions

View File

@@ -84,7 +84,7 @@ struct CreatorChannelFanTalkListItem: View {
.buttonStyle(.plain)
} else {
Button(action: onTapReport) {
Text("신고")
Text(I18n.Explorer.report)
.appFont(size: 13, weight: .medium)
.foregroundColor(Color.gray500)
}

View File

@@ -34,7 +34,9 @@ struct CreatorChannelFanTalkTabView: View {
private var content: some View {
VStack(spacing: 0) {
CreatorChannelFanTalkCountBar(fanTalkCount: viewModel.fanTalkCount)
if viewModel.fanTalkCount > 0 {
CreatorChannelFanTalkCountBar(fanTalkCount: viewModel.fanTalkCount)
}
if isEmptyState {
CreatorChannelFanTalkEmptyView(