Skip to content

Commit ebdf229

Browse files
committed
FEAT: 홈 이름 있을 때 보여주도록 구현
1 parent 5b74250 commit ebdf229

File tree

1 file changed

+1
-1
lines changed
  • feature/home/src/main/java/com/plottwist/feature/home

1 file changed

+1
-1
lines changed

feature/home/src/main/java/com/plottwist/feature/home/HomeScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ fun HomeTitle(
338338
verticalArrangement = Arrangement.SpaceBetween
339339
) {
340340
Text(
341-
text = stringResource(R.string.home_subtitle, name),
341+
text = if(name.isNotEmpty()) stringResource(R.string.home_subtitle, name) else "",
342342
style = TukSerifTypography.title22M
343343
)
344344

0 commit comments

Comments
 (0)