Skip to content

Commit 8a6652a

Browse files
authored
Merge pull request #141 from medusajs/feat/route-groups
feat: use route groups
2 parents 201c010 + 6185189 commit 8a6652a

File tree

30 files changed

+25
-109
lines changed

30 files changed

+25
-109
lines changed
File renamed without changes.

src/app/account/addresses/layout.tsx renamed to src/app/(main)/account/(dashboard)/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import AccountLayout from "@modules/account/templates/account-layout"
22

3-
export default function AddressPageLayout({
3+
export default function AccountPageLayout({
44
children,
55
}: {
66
children: React.ReactNode
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import AccountLayout from "@modules/account/templates/account-layout"
21
import OverviewTemplate from "@modules/account/templates/overview-template"
32
import { Metadata } from "next"
43

@@ -8,9 +7,5 @@ export const metadata: Metadata = {
87
}
98

109
export default function Account() {
11-
return (
12-
<AccountLayout>
13-
<OverviewTemplate />
14-
</AccountLayout>
15-
)
10+
return <OverviewTemplate />
1611
}
File renamed without changes.

0 commit comments

Comments
 (0)