Browse Source

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

Roman Zabaluev 2 năm trước cách đây
mục cha
commit
2ac8646769
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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);
       },