Skip to content

Commit

Permalink
fix: .../templates/*/app/layout.* import order (#56380)
Browse files Browse the repository at this point in the history
- fixes #56379
  • Loading branch information
hamirmahal committed Oct 4, 2023
1 parent 65b0bb2 commit 187df91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app-tw/js/app/layout.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import './globals.css'
import { Inter } from 'next/font/google'
import './globals.css'

const inter = Inter({ subsets: ['latin'] })

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'

const inter = Inter({ subsets: ['latin'] })

Expand Down
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app/js/app/layout.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import './globals.css'
import { Inter } from 'next/font/google'
import './globals.css'

const inter = Inter({ subsets: ['latin'] })

Expand Down
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app/ts/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'

const inter = Inter({ subsets: ['latin'] })

Expand Down

0 comments on commit 187df91

Please sign in to comment.