fix: home widget reorder fix (#6386)

This commit is contained in:
sriram veeraghanta 2025-01-13 16:27:50 +05:30 committed by GitHub
parent 25eb727eb9
commit b5493a31f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 14 deletions

View file

@ -3,7 +3,7 @@
import { observer } from "mobx-react";
// components
import { PageHead, AppHeader, ContentWrapper } from "@/components/core";
import { WorkspaceDashboardView } from "@/components/page-views";
import { WorkspaceHomeView } from "@/components/home";
// hooks
import { useWorkspace } from "@/hooks/store";
// local components
@ -19,7 +19,7 @@ const WorkspaceDashboardPage = observer(() => {
<AppHeader header={<WorkspaceDashboardHeader />} />
<ContentWrapper>
<PageHead title={pageTitle} />
<WorkspaceDashboardView />
<WorkspaceHomeView />
</ContentWrapper>
</>
);