Remove unused vars and cut a release
This commit is contained in:
parent
fb85aa2187
commit
d3b411afa7
4 changed files with 3 additions and 27 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -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
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sprintpadawan",
|
"name": "sprintpadawan",
|
||||||
"version": "1.0.7",
|
"version": "1.1.0",
|
||||||
"description": "Plan. Sprint. Repeat.",
|
"description": "Plan. Sprint. Repeat.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { useSession, signOut, signIn } from "next-auth/react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { env } from "~/env.mjs";
|
import { env } from "~/env.mjs";
|
||||||
import Loading from "./Loading";
|
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
|
|
||||||
interface NavbarProps {
|
interface NavbarProps {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { GetServerSideProps, type NextPage } from "next";
|
import type { GetServerSideProps, NextPage } from "next";
|
||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import { signIn, useSession } from "next-auth/react";
|
import { useSession } from "next-auth/react";
|
||||||
|
|
||||||
import RoomList from "~/components/RoomList";
|
import RoomList from "~/components/RoomList";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue