Skip to content

Commit d954060

Browse files
authored
chore(test): Remove geist font (#17541)
This should fix the `enforce-license-compliance` CI check
1 parent 1335cc9 commit d954060

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

dev-packages/e2e-tests/test-applications/nextjs-t3/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"@trpc/client": "~11.3.0",
2121
"@trpc/react-query": "~11.3.0",
2222
"@trpc/server": "~11.3.0",
23-
"geist": "^1.3.0",
2423
"next": "14.2.29",
2524
"react": "18.3.1",
2625
"react-dom": "18.3.1",

dev-packages/e2e-tests/test-applications/nextjs-t3/src/app/layout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import '~/styles/globals.css';
22

3-
import { GeistSans } from 'geist/font/sans';
43
import { type Metadata } from 'next';
54

65
import { TRPCReactProvider } from '~/trpc/react';
@@ -13,7 +12,7 @@ export const metadata: Metadata = {
1312

1413
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
1514
return (
16-
<html lang="en" className={`${GeistSans.variable}`}>
15+
<html lang="en">
1716
<body>
1817
<TRPCReactProvider>{children}</TRPCReactProvider>
1918
</body>
Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
import { type Config } from 'tailwindcss';
2-
import { fontFamily } from 'tailwindcss/defaultTheme';
32

43
export default {
54
content: ['./src/**/*.tsx'],
6-
theme: {
7-
extend: {
8-
fontFamily: {
9-
sans: ['var(--font-geist-sans)', ...fontFamily.sans],
10-
},
11-
},
12-
},
135
plugins: [],
146
} satisfies Config;

0 commit comments

Comments
 (0)