Skip to content

Commit

Permalink
fix: applayout
Browse files Browse the repository at this point in the history
  • Loading branch information
mfts committed Jan 18, 2025
1 parent dad16bb commit 7e4c683
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
7 changes: 1 addition & 6 deletions pages/datarooms/[id]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ export default function DataroomPage() {
}

return (
<AppLayout
breadcrumbs={[
{ title: "All Datarooms", href: "/datarooms" },
{ title: dataroom.name, href: `/datarooms/${dataroom.id}` },
]}
>
<AppLayout>
<div className="relative mx-2 mb-10 mt-4 space-y-8 overflow-hidden px-1 sm:mx-3 md:mx-5 md:mt-5 lg:mx-7 lg:mt-8 xl:mx-10">
<header>
<DataroomHeader
Expand Down
2 changes: 1 addition & 1 deletion pages/settings/general.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function General() {
}

return (
<AppLayout breadcrumbs={[{ title: "Settings", href: "/settings/general" }]}>
<AppLayout>
<main className="relative mx-2 mb-10 mt-4 space-y-8 overflow-hidden px-1 sm:mx-3 md:mx-5 md:mt-5 lg:mx-7 lg:mt-8 xl:mx-10">
<SettingsHeader />

Expand Down
7 changes: 1 addition & 6 deletions pages/settings/people.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,7 @@ export default function Billing() {
};

return (
<AppLayout
breadcrumbs={[
{ title: "Settings", href: "/settings/general" },
{ title: "People", href: "/settings/people" },
]}
>
<AppLayout>
<main className="relative mx-2 mb-10 mt-4 space-y-8 overflow-hidden px-1 sm:mx-3 md:mx-5 md:mt-5 lg:mx-7 lg:mt-8 xl:mx-10">
<SettingsHeader />
<div>
Expand Down

0 comments on commit 7e4c683

Please sign in to comment.