lloydzhou 1 년 전
부모
커밋
6c1cbe120c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/utils/stream.ts

+ 1 - 1
app/utils/stream.ts

@@ -91,7 +91,7 @@ export function fetch(url: string, options?: RequestInit): Promise<any> {
           headers,
         });
         if (status >= 300) {
-          setTimeout(close, 50);
+          setTimeout(close, 100);
         }
         return response;
       })