File tree Expand file tree Collapse file tree
templates/next-app-router/src/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ const appRouter = applicationConfig()
1515 . addDependency ( 'react' , constants . E2E_REACT_VERSION )
1616 . addDependency ( 'react-dom' , constants . E2E_REACT_DOM_VERSION )
1717 . addDependency ( '@clerk/nextjs' , constants . E2E_CLERK_JS_VERSION || linkPackage ( 'nextjs' ) )
18- . addDependency ( '@clerk/shared' , linkPackage ( 'shared' ) )
19- . addDependency ( '@clerk/ui' , linkPackage ( 'ui' ) ) ;
18+ . addDependency ( '@clerk/shared' , linkPackage ( 'shared' ) ) ;
2019
2120const appRouterTurbo = appRouter . clone ( ) . setName ( 'next-app-router-turbopack' ) . addScript ( 'dev' , 'pnpm dev' ) ;
2221
Original file line number Diff line number Diff line change 11import './globals.css' ;
22import { Inter } from 'next/font/google' ;
33import { ClerkProvider } from '@clerk/nextjs' ;
4- import { ui } from '@clerk/ui' ;
54
65const inter = Inter ( { subsets : [ 'latin' ] } ) ;
76
@@ -13,7 +12,6 @@ export const metadata = {
1312export default function RootLayout ( { children } : { children : React . ReactNode } ) {
1413 return (
1514 < ClerkProvider
16- ui = { ui }
1715 prefetchUI = { process . env . NEXT_PUBLIC_CLERK_PREFETCH_UI === 'false' ? false : undefined }
1816 appearance = { {
1917 options : {
You can’t perform that action at this time.
0 commit comments