From d3b411afa7f505d026539078b2c8dba5d6255993 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji <88056492+atridadl@users.noreply.github.com> Date: Wed, 31 May 2023 21:53:19 -0600 Subject: [PATCH] Remove unused vars and cut a release --- CHANGELOG.md | 23 ----------------------- package.json | 2 +- src/components/Navbar.tsx | 1 - src/pages/dashboard/index.tsx | 4 ++-- 4 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 CHANGELOG.md 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";