We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3424e83 commit 1cf9336Copy full SHA for 1cf9336
src/App.js
@@ -20,11 +20,8 @@ import BlueprintList from "./pages/blueprintList";
20
import APIEmpty from "./components/EmptyStates/APIEmpty";
21
22
store.dispatch(fetchImageTypes());
23
-// Fetch blueprints and images every 30 seconds in case of changes via the cli
24
store.dispatch(fetchBlueprints());
25
-setInterval(() => store.dispatch(fetchBlueprints()), 1000 * 30);
26
store.dispatch(fetchAllImages());
27
-setInterval(() => store.dispatch(fetchAllImages()), 1000 * 30);
28
29
const Content = () => {
30
const [isAPIOn, setIsAPIOn] = useState();
0 commit comments