diff --git a/.changeset/perfect-sloths-vanish.md b/.changeset/perfect-sloths-vanish.md
index 77b6d3510b44c3153767968a0fd770290f8297a5..b6ef95e308c950eaec30b6737a35e559e84b6783 100644
--- a/.changeset/perfect-sloths-vanish.md
+++ b/.changeset/perfect-sloths-vanish.md
@@ -1,6 +1,5 @@
 ---
 "llamaindex": patch
-"@llamaindex/edge": patch
 ---
 
 feat: init anthropic agent
diff --git a/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx b/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx
index 8f8b7cfcc7427e24c7b5d8d1b02415442d05ed5a..a547687441e695b41dac86cdb5c4aa94db02d76d 100644
--- a/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx
+++ b/packages/edge/e2e/test-edge-runtime/src/app/layout.tsx
@@ -1,9 +1,6 @@
 import type { Metadata } from "next";
-import { Inter } from "next/font/google";
 import "./globals.css";
 
-const inter = Inter({ subsets: ["latin"] });
-
 export const metadata: Metadata = {
   title: "Create Next App",
   description: "Generated by create next app",
@@ -18,7 +15,7 @@ export default function RootLayout({
 }>) {
   return (
     <html lang="en">
-      <body className={inter.className}>{children}</body>
+      <body>{children}</body>
     </html>
   );
 }