diff --git a/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx b/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx index 67d34e4010..4155552383 100644 --- a/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx +++ b/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx @@ -80,10 +80,10 @@ export const InfoContent = () => { const plugins = getAvailablePlugins(); const availablePlugins: PackageDependency[] = plugins.map( - ({ name, components }) => { + ({ name, plugin }) => { return { - name, - versions: Object.keys(components).toString(), + name: `${name} (${plugin.getId()})`, + versions: '', }; }, );