Skip to content

Commit d305187

Browse files
committed
fix: Fix Regression in bulk install
1 parent 228b457 commit d305187

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/components/NewStore/hooks/usePluginInstallation.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,7 @@ export const usePluginInstallation = (): PluginInstallationState => {
211211
const pluginAdapter = {
212212
name: plugin.name,
213213
version: plugin.version,
214-
// Provide plugin_store_url directly instead of relying on url mapping
215-
plugin_store_url: plugin.url,
214+
url: plugin.url,
216215
};
217216

218217
// Install the plugin with fixed parameter order
@@ -226,7 +225,6 @@ export const usePluginInstallation = (): PluginInstallationState => {
226225
placement: "bottomRight",
227226
});
228227
} catch (err: any) {
229-
console.error(err);
230228
notification.error({
231229
message: "Installation failed",
232230
description: `Failed to install ${plugin.title}: ${err?.message || ""}`,

0 commit comments

Comments
 (0)