diff --git a/web/app/(commonLayout)/plugins/page.tsx b/web/app/(commonLayout)/plugins/page.tsx index 830efd7159..981319eb4a 100644 --- a/web/app/(commonLayout)/plugins/page.tsx +++ b/web/app/(commonLayout)/plugins/page.tsx @@ -1,5 +1,5 @@ -import PluginsPanel from './plugins-panel' -import Container from './container' +import PluginsPanel from '@/app/components/plugins/plugins-panel' +import Container from '@/app/components/plugins/container' import Marketplace from '@/app/components/plugins/marketplace' const PluginList = async () => { diff --git a/web/app/(commonLayout)/plugins/Install-plugin-dropdown.tsx b/web/app/components/plugins/Install-plugin-dropdown.tsx similarity index 100% rename from web/app/(commonLayout)/plugins/Install-plugin-dropdown.tsx rename to web/app/components/plugins/Install-plugin-dropdown.tsx diff --git a/web/app/(commonLayout)/plugins/container.tsx b/web/app/components/plugins/container.tsx similarity index 100% rename from web/app/(commonLayout)/plugins/container.tsx rename to web/app/components/plugins/container.tsx diff --git a/web/app/(commonLayout)/plugins/plugins-panel.tsx b/web/app/components/plugins/plugins-panel.tsx similarity index 100% rename from web/app/(commonLayout)/plugins/plugins-panel.tsx rename to web/app/components/plugins/plugins-panel.tsx