Remove unneded imports.

This commit is contained in:
Lucid Kobold
2022-06-21 16:17:38 -05:00
parent 9506e5b43c
commit e708da6358
2 changed files with 3 additions and 2 deletions

View File

@@ -90,7 +90,8 @@ const tutorialSlice = createSlice({
if (temp !== null || local !== null) {
state.storageState = temp !== null ? temp : local;
state.completedTutorial = temp !== null ? temp.completed : local.completed;
state.completedTutorial =
temp !== null ? temp.completed : local.completed;
}
if (temp === null && local === null) {

View File

@@ -1,4 +1,4 @@
import React, { Fragment, useEffect, useRef, useState } from "react";
import React, { Fragment, useEffect, useRef } from "react";
import { Box } from "@chakra-ui/react";
import { format } from "date-fns";
import Calender from "../components/calender";