Skip to content

Commit

Permalink
patch: fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Nov 4, 2024
1 parent fb6aad1 commit 97b167c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 6 additions & 1 deletion apps/landing/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-page-custom-font": "off"
}

}
4 changes: 0 additions & 4 deletions apps/landing/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
/* eslint-disable react/no-unescaped-entities */
// @ts-nocheck
"use client"
import { Bell, ChevronRight, Globe, Inbox, Lightbulb, Lock, User } from "lucide-react";
import { useState } from "react";

const navigation = [
{ name: "Github", href: "https://github.com/Peppermint-Lab/peppermint" },
Expand Down Expand Up @@ -158,7 +155,6 @@ const features2 = [
];

export default function Home() {
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);

return (
<div className="sm:min-h-screen mx-6 sm:mx-0">
Expand Down

0 comments on commit 97b167c

Please sign in to comment.