fix: project settings layout render in export (#2746)

This commit is contained in:
Ramesh Kumar Chandra 2023-11-10 13:07:18 +05:30 committed by GitHub
parent 2748133bd0
commit 6f580ce2d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,16 +9,12 @@ import ExportGuide from "components/exporter/guide";
import { NextPageWithLayout } from "types/app";
const ExportsPage: NextPageWithLayout = () => (
<AppLayout header={<WorkspaceSettingHeader title="Export Settings" />}>
<WorkspaceSettingLayout>
<div className="pr-9 py-8 w-full overflow-y-auto">
<div className="flex items-center py-3.5 border-b border-custom-border-100">
<h3 className="text-xl font-medium">Exports</h3>
</div>
<ExportGuide />
</div>
</WorkspaceSettingLayout>
</AppLayout>
);
ExportsPage.getLayout = function getLayout(page: ReactElement) {