From dd1d66bf49c03189b1ab67965c45e941bc90a666 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Tue, 29 Aug 2023 18:45:27 -0600 Subject: [PATCH] Lint --- src/app/_components/RoomList.tsx | 1 - src/app/dashboard/page.tsx | 3 --- src/app/page.tsx | 17 ++++------------- src/app/room/[id]/page.tsx | 2 -- 4 files changed, 4 insertions(+), 19 deletions(-) diff --git a/src/app/_components/RoomList.tsx b/src/app/_components/RoomList.tsx index 5763669..22e20ff 100644 --- a/src/app/_components/RoomList.tsx +++ b/src/app/_components/RoomList.tsx @@ -98,7 +98,6 @@ const RoomList = () => { {roomsFromDb && roomsFromDb.length > 0 && (
- {/* head */} diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 1fa99c0..8f1dfaa 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -1,8 +1,5 @@ "use client"; -import type { NextPage } from "next"; -import Head from "next/head"; - import RoomList from "~/app/_components/RoomList"; import Link from "next/link"; diff --git a/src/app/page.tsx b/src/app/page.tsx index 2c1bd8c..6cd5d88 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,19 +1,10 @@ -import { type NextPage } from "next"; -import Head from "next/head"; - export const dynamic = "force-static"; -const Home: NextPage = () => { +const Home = () => { return ( - <> - - Sprint Padawan - - -
- -
- +
+ +
); }; diff --git a/src/app/room/[id]/page.tsx b/src/app/room/[id]/page.tsx index c7114ca..182af92 100644 --- a/src/app/room/[id]/page.tsx +++ b/src/app/room/[id]/page.tsx @@ -1,7 +1,5 @@ "use client"; -import { type NextPage } from "next"; -import Head from "next/head"; import Image from "next/image"; import { useEffect, useState } from "react"; import { EventTypes } from "~/utils/types";
Room Name