Skip to content

Commit

Permalink
💄 kt lint formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kmkim2689 committed Oct 20, 2024
1 parent 570c071 commit 6d34b78
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,9 @@ class RecipeMakingViewModel2
difficultySelectedValue.value = difficulty.toFloat() / 2
introductionContent.value = description
val timeParts = cookingTime.split(SEPARATOR_TIME)
hourContent.value = timeParts.getOrNull(0)
minuteContent.value = timeParts.getOrNull(1)
secondContent.value = timeParts.getOrNull(2)
hourContent.value = timeParts[0]
minuteContent.value = timeParts[1]
secondContent.value = timeParts[2]
thumbnailTitle = thumbnail
categoryContent.value = categories.joinToString()
_thumbnailUri.value = Uri.parse(imageUri)
Expand Down

0 comments on commit 6d34b78

Please sign in to comment.