fix(home): 팔로잉 빈 상태 문구를 수정한다

This commit is contained in:
Yu Sung
2026-08-19 17:41:42 +09:00
parent 6ff3dfb7ae
commit 196959ba36

View File

@@ -3260,9 +3260,9 @@ If you block this user, the following features will be restricted.
enum HomeFollowing {
static var emptyStateMessage: String {
pick(
ko: "아직 팔로잉 소식이 없어요.\n관심 있는 크리에이터를 팔로우해 보세요.",
ko: "아직 팔로우한 크리에이터가 없어요.\n관심 있는 크리에이터를 팔로우해 보세요.",
en: "There are no following updates yet.\nFollow creators you're interested in.",
ja: "まだフォロー中の新着情報がありません。\n気になるクリエイターをフォローしてみましょう。"
ja: "まだフォローしているクリエイターがいません。\n気になるクリエイターをフォローしてみましょう。"
)
}