diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index e278f84..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,23 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -## 1.0.0 - Proactively streamline market-driven customer service (2023-05-10) - -🎉🎉🎉 -✨ You can now create and join rooms to vote on scrum stories with your team! -✨ Signin works with Github or Google OAuth -✨ Rooms allow for custom scales -✨ Room owners can reset votes, change the topic being votes on, and even download a CSV with stats on how votes went - -## 1.0.1 - Completely orchestrate principle-centered initiatives (2023-05-14) - -🚧 Changed VERCEL_ENV to APP_ENV -🚧 Added indicators for the environment in development and local -🚧 Fully automated the process for developing locally with railway -🚧 Package updates - -## 1.0.2 - Quickly engage end-to-end niches (2023-05-20) - -🚧 Moved to fms-ts for emails -🚧 Package updates diff --git a/package.json b/package.json index 937e710..3cc3454 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sprintpadawan", - "version": "1.0.7", + "version": "1.1.0", "description": "Plan. Sprint. Repeat.", "private": true, "scripts": { diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 87a14ac..206d42b 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -2,7 +2,6 @@ import { useSession, signOut, signIn } from "next-auth/react"; import Link from "next/link"; import Image from "next/image"; import { env } from "~/env.mjs"; -import Loading from "./Loading"; import { useRouter } from "next/router"; interface NavbarProps { diff --git a/src/pages/dashboard/index.tsx b/src/pages/dashboard/index.tsx index e8d511a..abce60d 100644 --- a/src/pages/dashboard/index.tsx +++ b/src/pages/dashboard/index.tsx @@ -1,6 +1,6 @@ -import { GetServerSideProps, type NextPage } from "next"; +import type { GetServerSideProps, NextPage } from "next"; import Head from "next/head"; -import { signIn, useSession } from "next-auth/react"; +import { useSession } from "next-auth/react"; import RoomList from "~/components/RoomList";