Skip to content

Commit

Permalink
Temporarily disable modal overlay (#21)
Browse files Browse the repository at this point in the history
* Remove modal overlay

* Remove unused import
  • Loading branch information
izruff authored Sep 21, 2024
1 parent b1e704d commit 46c6e05
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import Navbar from "./components/navbar";
import { Suspense } from "react";
import ModalOverlay from "./components/modal-overlay";
import Link from "next/link";

Expand All @@ -23,7 +22,6 @@ export default function RootLayout({
<body className={inter.className}>
<Navbar />
{children}
<ModalOverlay />
</body>
</html>
);
Expand Down

0 comments on commit 46c6e05

Please sign in to comment.