Skip to content

Commit

Permalink
Fix : 밀크 -> 화이트 와인, 초콜릿 -> 레드 와인 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Jun 6, 2024
1 parent a21f943 commit 0523538
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
applicationId = "com.teamwiney.winey"
minSdk = 24
targetSdk = 34
versionCode = 3
versionName = "1.0"
versionCode = 5
versionName = "1.0.1"

signingConfig = signingConfigs.getByName("debug")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ class SignUpViewModel @Inject constructor(

val selectedChocolate = currentState.favoriteTastes[0].signUpFavoriteItem.find { it.isSelected }?.keyword
val tasteResultUrl = when (selectedChocolate) {
"MILK" -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=red"
else -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=white"
"MILK" -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=white"
else -> "${AuthDestinations.SignUp.TASTE_RESULT}?taste=red"
}

postEffect(SignUpContract.Effect.NavigateTo(tasteResultUrl))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ fun MyProfileAppVersionItem() {
)

Text(
text = "1.0",
text = "1.0.1",
style = WineyTheme.typography.captionB1.copy(
color = WineyTheme.colors.gray_800
)
Expand Down

0 comments on commit 0523538

Please sign in to comment.