Tutorial #62

Merged
LucidKobold merged 32 commits from tutorial into main 2022-06-24 15:51:02 -04:00
16 changed files with 814 additions and 122 deletions
Showing only changes of commit b5d367b193 - Show all commits

View File

@@ -1,4 +1,4 @@
import { createSlice, PayloadAction } from "@reduxjs/toolkit"; import { createSlice/*, PayloadAction*/ } from "@reduxjs/toolkit";
import { addMonths } from "date-fns"; import { addMonths } from "date-fns";
interface StorageState { interface StorageState {

View File

@@ -47,8 +47,6 @@ const IndexPage = (): JSX.Element => {
if (completedTutorial !== null) { if (completedTutorial !== null) {
dispatch(updateLoading(false)); dispatch(updateLoading(false));
} }
console.info("use effect", completedTutorial, tutorialCompletionInfo);
}, [completedTutorial, dispatch, tutorialCompletionInfo]); }, [completedTutorial, dispatch, tutorialCompletionInfo]);
return ( return (