Skip to content

Commit 7b3b81b

Browse files
committed
[BOOK-275] feat: 선택 문장 병합 시 띄어쓰기 제거하고 붙여서 합치도록 변경
1 parent 2ed9202 commit 7b3b81b

File tree

1 file changed

+1
-1
lines changed
  • feature/record/src/main/kotlin/com/ninecraft/booket/feature/record/ocr

1 file changed

+1
-1
lines changed

feature/record/src/main/kotlin/com/ninecraft/booket/feature/record/ocr/OcrPresenter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class OcrPresenter @AssistedInject constructor(
119119

120120
is OcrUiEvent.OnSelectionConfirmed -> {
121121
mergedSentence = selectedIndices
122-
.sorted().joinToString(" ") { sentenceList[it] }
122+
.sorted().joinToString("") { sentenceList[it] }
123123
navigator.pop(result = OcrScreen.OcrResult(mergedSentence))
124124
}
125125

0 commit comments

Comments
 (0)