diff --git a/src/components/AppShelf/AppShelf.tsx b/src/components/AppShelf/AppShelf.tsx
index dd67c0d02..21793972d 100644
--- a/src/components/AppShelf/AppShelf.tsx
+++ b/src/components/AppShelf/AppShelf.tsx
@@ -12,6 +12,8 @@ import { arrayMove, SortableContext } from '@dnd-kit/sortable';
import { useConfig } from '../../tools/state';
import { SortableAppShelfItem, AppShelfItem } from './AppShelfItem';
+import { ModuleWrapper } from '../modules/moduleWrapper';
+import { DownloadsModule } from '../modules';
const AppShelf = (props: any) => {
const [activeId, setActiveId] = useState(null);
@@ -116,10 +118,16 @@ const AppShelf = (props: any) => {
{item()}
>
) : null}
+
);
}
- return item();
+ return (
+
+ {item()}
+
+
+ );
};
export default AppShelf;