Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Commit

Permalink
[FIX] : AnswerActivity.kt 오류 수정
Browse files Browse the repository at this point in the history
- intent putExtra 쪽 오타 수정
  • Loading branch information
l2hyunwoo committed Apr 2, 2021
1 parent 559f58c commit 74ecf8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class AnswerActivity : BindingActivity<ActivityAnswerBinding>(R.layout.activity_
answerViewModel.registerAnswer(requestAnswerData)
delay(500)
val position = intent.getIntExtra("position", -1)
intent.putExtra("posittion", position)
intent.putExtra("position", position)
intent.putExtra("content", answerViewModel.answer.value)
setResult(RESULT_OK, intent)
finish()
Expand Down

0 comments on commit 74ecf8e

Please sign in to comment.