Expanded the add stickers modal to include a confirmation screen when updating a sticker on a past day. Step state is not resetting on close.

This commit is contained in:
Lucid Kobold
2022-03-27 01:32:15 -05:00
parent 78abdc7e41
commit fb53187438
4 changed files with 201 additions and 77 deletions

View File

@@ -2,7 +2,7 @@ import React, { useEffect } from "react";
import { useRouter } from "next/router";
import { Box, Heading } from "@chakra-ui/react";
const DateRoute = () => {
const DateIndex = () => {
const router = useRouter();
useEffect(() => {
@@ -20,4 +20,4 @@ const DateRoute = () => {
);
};
export default DateRoute;
export default DateIndex;