Browse Source

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

Roman Zabaluev 2 years ago
parent
commit
2ac8646769
1 changed files with 1 additions and 0 deletions
  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);
       },