Skip to content

Commit

Permalink
[TNT-115] fix: non-null assertion 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonJeongk committed Jan 26, 2025
1 parent f1b6e1f commit 324d534
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ internal fun TraineeProfilePage(
if (!trainee.caution.isNullOrEmpty()) {
TextWithBackground(
label = stringResource(R.string.caution),
text = trainee.caution!!,
text = trainee.caution ?: "",
modifier = Modifier.height(128.dp),
)
}
Expand Down

0 comments on commit 324d534

Please sign in to comment.