We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228b457 commit d305187Copy full SHA for d305187
1 file changed
src/components/NewStore/hooks/usePluginInstallation.ts
@@ -211,8 +211,7 @@ export const usePluginInstallation = (): PluginInstallationState => {
211
const pluginAdapter = {
212
name: plugin.name,
213
version: plugin.version,
214
- // Provide plugin_store_url directly instead of relying on url mapping
215
- plugin_store_url: plugin.url,
+ url: plugin.url,
216
};
217
218
// Install the plugin with fixed parameter order
@@ -226,7 +225,6 @@ export const usePluginInstallation = (): PluginInstallationState => {
226
225
placement: "bottomRight",
227
});
228
} catch (err: any) {
229
- console.error(err);
230
notification.error({
231
message: "Installation failed",
232
description: `Failed to install ${plugin.title}: ${err?.message || ""}`,
0 commit comments