Skip to content

Commit

Permalink
conflict resolve with ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jokwanhee committed Jan 10, 2023
1 parent c291966 commit 5d1c961
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class LoginActivity : BaseActivity<ActivityLoginBinding>() {
}
textViewFindId.setOnClickListener {
goToFindIdActivity()
}
buttonLogin.setOnClickListener {
viewModel.login()
}
Expand All @@ -76,6 +77,7 @@ class LoginActivity : BaseActivity<ActivityLoginBinding>() {
}
fun goToFindIdActivity() {
Intent(this, FindIdActivity::class.java).also { startActivity(it) }
}
fun goToMainActivity() {
Intent(this, MainPageActivity::class.java).also { startActivity(it) }
}
Expand Down
2 changes: 0 additions & 2 deletions data/src/main/java/com/jjbaksa/data/api/AuthApi.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,3 @@ interface AuthApi {
@Query("code") codeNumber: String
): Call<FindIdResp>
}


Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.jjbaksa.domain.resp.findid

data class FindIdResp (
data class FindIdResp(
val account: String,
val email: String,
val id: Int,
Expand Down

0 comments on commit 5d1c961

Please sign in to comment.