remove console.log from streamable response (#321)

This commit is contained in:
Lee Robinson 2024-05-01 23:06:52 -05:00 committed by GitHub
commit 36da7b241e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,6 @@ export const useStreamableText = (
if (typeof content === 'object') {
let value = ''
for await (const delta of readStreamableValue(content)) {
console.log(delta)
if (typeof delta === 'string') {
setRawContent((value = value + delta))
}