We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02a1036 commit 422a34eCopy full SHA for 422a34e
web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx
@@ -297,15 +297,6 @@ function MarketPageContent({
297
const handleInstallPlugin = useCallback(
298
async (author: string, pluginName: string) => {
299
try {
300
- // Find the full plugin object from the list
301
- const pluginVO = plugins.find(
302
- (p) => p.author === author && p.pluginName === pluginName,
303
- );
304
- if (!pluginVO) {
305
- console.error('Plugin not found:', author, pluginName);
306
- return;
307
- }
308
-
309
// Fetch full plugin details to get PluginV4 object
310
const response = await getCloudServiceClientSync().getPluginDetail(
311
author,
0 commit comments