Polish #14
@@ -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))
|
||||
);
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user