We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a10a690 + 218da40 commit 245f4f9Copy full SHA for 245f4f9
feature/proposal-create/src/main/java/com/plottwist/feature/proposal_create/CreateProposalScreen.kt
@@ -221,7 +221,8 @@ private fun CreateProposalScreen(
221
modifier = Modifier.align(Alignment.BottomCenter).padding(
222
bottom = (140f * screenHeight / 812f).dp
223
),
224
- text = selectedGatheringName + "\n친구들에게",
+ text = if(selectedGatheringName.isBlank()) "연락이 뜸해진\n친구들에게"
225
+ else "$selectedGatheringName\n친구들에게",
226
style = TukSerifTypography.body16M,
227
textAlign = TextAlign.Center
228
)
0 commit comments