We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a5605 commit 4b813b0Copy full SHA for 4b813b0
src/components/Store/index.tsx
@@ -357,7 +357,7 @@ const Store: React.FC = () => {
357
retry: false,
358
});
359
360
- const { data: existingPlugins } = useQuery({
+ const { data: existingPlugins, refetch: refetchExistingPlugins } = useQuery({
361
queryKey: ["existingStorePlugins"],
362
queryFn: fetchExistingPlugins,
363
@@ -398,10 +398,7 @@ const Store: React.FC = () => {
398
// If there is a plugin pending installation, proceed to install
399
handleSave();
400
}
401
-
402
- if (bulkInstallMutation.isIdle) {
403
- handleInstallAll();
404
- }
+ refetchExistingPlugins();
405
};
406
407
const TitleComponent = useMemo(
0 commit comments