fix: Update analytics page layout fixes (#2623)

This commit is contained in:
sriram veeraghanta 2023-11-03 00:09:13 +05:30 committed by GitHub
parent 3c884fd46e
commit 5efc6993cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,6 @@ const AnalyticsPage: NextPageWithLayout = observer(() => {
}, [user, workspaceSlug]);
return (
<AppLayout header={<WorkspaceAnalyticsHeader />}>
<>
{projects && projects.length > 0 ? (
<div className="h-full flex flex-col overflow-hidden bg-custom-background-100">
@ -108,7 +107,6 @@ const AnalyticsPage: NextPageWithLayout = observer(() => {
</>
)}
</>
</AppLayout>
);
});