diff --git a/desktop/app/src/utils/getDefaultPluginsIndex.tsx b/desktop/app/src/utils/getDefaultPluginsIndex.tsx index 43c511bbe..63c859c40 100644 --- a/desktop/app/src/utils/getDefaultPluginsIndex.tsx +++ b/desktop/app/src/utils/getDefaultPluginsIndex.tsx @@ -9,5 +9,6 @@ export default function () { // eslint-disable-next-line import/no-unresolved - return require('../defaultPlugins'); + const index = require('../defaultPlugins'); + return index.default || index; }