소스 검색

FE: Fix react query not initiating requests for local host (#3915)

Roman Zabaluev 2 년 전
부모
커밋
2ac8646769
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      kafka-ui-react-app/src/components/App.tsx

+ 1 - 0
kafka-ui-react-app/src/components/App.tsx

@@ -31,6 +31,7 @@ const queryClient = new QueryClient({
   defaultOptions: {
     queries: {
       suspense: true,
+      networkMode: 'offlineFirst',
       onError(error) {
         showServerError(error as Response);
       },