Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ internal fun VerifyEmail(
is VerifyEmailSideEffect.NotFoundStudent -> {
JobisToast.create(
context = context,
message = context.getString(R.string.toast_check_email),
message = context.getString(R.string.toast_not_found_email),
drawable = JobisIcon.Error,
).show()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ internal class VerifyEmailViewModel @Inject constructor(
}

is ConflictException -> {
setState { state.value.copy(showEmailDescription = true) }
setState {
state.value.copy(
emailDescriptionType = DescriptionType.Error,
showEmailDescription = true,
)
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion feature/verify-email/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@

<string name="toast_check_email_validation">이메일 ν˜•μ‹μ„ ν™•μΈν•΄μ£Όμ„Έμš”</string>

<string name="toast_check_email">이메일을 ν™•μΈν•΄μ£Όμ„Έμš”</string>
<string name="toast_not_found_email">λ“±λ‘λœ 이메일이 μ•„λ‹ˆμ—μš”</string>
</resources>
Loading