Polish #14

Merged
LucidKobold merged 4 commits from polish into main 2021-12-01 16:11:17 -05:00
4 changed files with 6 additions and 8 deletions

View File

@@ -33,11 +33,8 @@ const CalenderContextProvider = ({
}: {
children: ReactNode;
}): JSX.Element => {
// Today's date
const [today] = useState<Date>(new Date());
// Selected month & year
const [selectedMonth, setSelectedMonth] = useState<Date>(today);
const [selectedMonth, setSelectedMonth] = useState<Date>(new Date());
const [endOfSelectedMonth, SetEndOfSelectedDMonth] = useState<number>(
getDate(endOfMonth(selectedMonth))
);

View File

@@ -1,8 +1,8 @@
{
"private": true,
"name": "lucid-creations-media-potty-chart",
"homepage": "https://github.com/LucidCreationsMedia/",
"version": "0.1.0",
"homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/",
"version": "0.0.3.1-pre-alpha",
"author": {
"name": "Lucid Creations Media",
"url": "https://lucidcreations.media",

View File

@@ -4,7 +4,8 @@ import { ColorModeScript } from "@chakra-ui/react";
import AppTheme from "../theme/AppTheme";
const description =
"Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
// "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
"Pre-alpha preview of the behavior and progress tracker for ABDLs and babyfurs.";
class Document extends NextDocument {
render(): JSX.Element {

View File

@@ -13,7 +13,7 @@ import MobileNav from "./MobileNav";
const Header = (): JSX.Element => {
const appName = "LCM Potty Chart";
const appVersion = "v0.0.3.0-pre-alpha";
const appVersion = "v0.0.3.1-pre-alpha";
// Add transparency while not at the top of the page.
const [transparentNavbar, setTransparentNavbar] = useState<boolean>(false);