Skip to content

Commit

Permalink
fix : startActivity 삭제 #2
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonHwan-Kim committed Apr 25, 2023
1 parent 7bb9b2b commit b8e1887
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ class LoginActivity : AppCompatActivity() {
ActivityResultContracts.StartActivityForResult()
) { result: ActivityResult ->
if (result.resultCode == RESULT_OK) {
// user = result.data?.getParcelable(IntentKey.USER_DATA, User::class.java)
showShortSnackbar(binding.root, getString(R.string.login_success_sign_up_msg))
}
}
Expand All @@ -69,7 +68,6 @@ class LoginActivity : AppCompatActivity() {
binding.btMainSignUp.setOnClickListener {
val intent = Intent(this, SignUpActivity::class.java)
getResultSignUp.launch(intent)
startActivity(intent)
}
}

Expand Down

0 comments on commit b8e1887

Please sign in to comment.