Remove unneded imports.
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user