Skip to content

Commit 672832c

Browse files
remove Inter font since it was causing build failures
1 parent 11c79d8 commit 672832c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/web/src/app/layout.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { Metadata } from "next";
2-
import { Inter } from "next/font/google";
32
import "./globals.css";
43
import { ThemeProvider } from "next-themes";
54
import { Suspense } from "react";
@@ -8,8 +7,6 @@ import { PHProvider } from "./posthogProvider";
87
import { Toaster } from "@/components/ui/toaster";
98
import { TooltipProvider } from "@/components/ui/tooltip";
109

11-
const inter = Inter({ subsets: ["latin"] });
12-
1310
export const metadata: Metadata = {
1411
title: "Sourcebot",
1512
description: "Sourcebot",
@@ -26,7 +23,7 @@ export default function RootLayout({
2623
// @see : https://github.com/pacocoursey/next-themes?tab=readme-ov-file#with-app
2724
suppressHydrationWarning
2825
>
29-
<body className={inter.className}>
26+
<body>
3027
<Toaster />
3128
<PHProvider>
3229
<ThemeProvider

0 commit comments

Comments
 (0)