Skip to content

Commit

Permalink
fix: remove errorMessage orEmpty
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Jan 30, 2025
1 parent f3d21c8 commit 2ca08b7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ fun AddGoalRoute(
val errorMessage =
goalValidResult.errorMessage()
?.let { stringResource(id = it) }
.orEmpty()

LaunchedEffect(Unit) {
viewModel.navigateToBackEvent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ private fun DetailGoalScreen(
uiState.goalValidResult
.errorMessage()
?.let { stringResource(id = it) }
.orEmpty()

DetailGoalContent(
goal = goal,
Expand Down

0 comments on commit 2ca08b7

Please sign in to comment.