Spaces:
Paused
Paused
matt HOFFNER
commited on
Commit
·
a8cb4d1
1
Parent(s):
8e0db75
fix
Browse files
src/app/search/web/page.jsx
CHANGED
@@ -30,11 +30,6 @@ export default function WebSearchPage({ searchParams }) {
|
|
30 |
let text = '';
|
31 |
|
32 |
while (true) {
|
33 |
-
if (stopConversationRef.current === true) {
|
34 |
-
controller.abort();
|
35 |
-
break;
|
36 |
-
}
|
37 |
-
|
38 |
const { value, done } = await reader.read();
|
39 |
|
40 |
if (done) {
|
|
|
30 |
let text = '';
|
31 |
|
32 |
while (true) {
|
|
|
|
|
|
|
|
|
|
|
33 |
const { value, done } = await reader.read();
|
34 |
|
35 |
if (done) {
|