Remove unused vars and cut a release

This commit is contained in:
Atridad Lahiji 2023-05-31 21:53:19 -06:00
parent fb85aa2187
commit d3b411afa7
No known key found for this signature in database
4 changed files with 3 additions and 27 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
{
"name": "sprintpadawan",
"version": "1.0.7",
"version": "1.1.0",
"description": "Plan. Sprint. Repeat.",
"private": true,
"scripts": {

View file

@ -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 {

View file

@ -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";