Commit e2d32c5f authored by 박민석's avatar 박민석

remove console

parent 4a5eb452
Pipeline #21201 passed with stages
in 4 minutes and 9 seconds
...@@ -201,14 +201,12 @@ ...@@ -201,14 +201,12 @@
function readStream () { function readStream () {
return reader.read().then(({ done, value }) => { return reader.read().then(({ done, value }) => {
console.log(done, value)
if (done) { if (done) {
isLoading = false isLoading = false
return return
} }
const chunk = decoder.decode(value, { stream: true }) const chunk = decoder.decode(value, { stream: true })
console.log('chunk >>>>> ', chunk)
// 로더 제거 후 메시지 표시 // 로더 제거 후 메시지 표시
if (chatLoader) chatBody.removeChild(chatLoader) if (chatLoader) chatBody.removeChild(chatLoader)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment