From b7ec08f5efe8a090bfbd9d541cf86ccbbc30f0d1 Mon Sep 17 00:00:00 2001 From: Nicholas Pease Date: Wed, 3 Apr 2024 22:08:25 +0000 Subject: [PATCH] Final Touches --- frontend-next/.eslintrc.json | 2 +- frontend-next/src/app/app/page.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend-next/.eslintrc.json b/frontend-next/.eslintrc.json index 6b2f9c6..471d759 100644 --- a/frontend-next/.eslintrc.json +++ b/frontend-next/.eslintrc.json @@ -4,6 +4,6 @@ "no-unused-vars": ["warn", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }], "jsx-a11y/alt-text": "off", "@next/next/no-img-element": "off", - "no-console": "on", + "no-console": 1 } } diff --git a/frontend-next/src/app/app/page.js b/frontend-next/src/app/app/page.js index c057526..75d60e3 100644 --- a/frontend-next/src/app/app/page.js +++ b/frontend-next/src/app/app/page.js @@ -5,7 +5,6 @@ import { auth, database } from "../../../firebase-config"; import { ref, onValue } from "firebase/database"; import { useAuthState } from "react-firebase-hooks/auth" import { useGeolocated } from "react-geolocated"; -import Link from "next/link" // Header Import import { Header } from "../../components/app/header";