Skip to content

Commit 210cac5

Browse files
committed
fix(integration): remove @clerk/ui from shared test template
1 parent 40e2a7c commit 210cac5

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

integration/presets/next.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

2120
const appRouterTurbo = appRouter.clone().setName('next-app-router-turbopack').addScript('dev', 'pnpm dev');
2221

integration/templates/next-app-router/src/app/layout.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import './globals.css';
22
import { Inter } from 'next/font/google';
33
import { ClerkProvider } from '@clerk/nextjs';
4-
import { ui } from '@clerk/ui';
54

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

@@ -13,7 +12,6 @@ export const metadata = {
1312
export 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: {

0 commit comments

Comments
 (0)