Skip to content

Commit

Permalink
refactor: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Michota committed Oct 15, 2023
1 parent 25cd86d commit 7b12c07
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/contexts/GeneralTasksContext.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useContext } from "react";
import { useContext, useEffect } from "react";
import { createContext } from "react";
import { useState } from "react";
import { useTasksState } from "../features/tasks/useTasksState";
Expand All @@ -12,7 +12,6 @@ function GeneralTasksProvider({ children }) {
data: localData,
dispatch: localDispatcher,
isLoadingRemoteData: isLoadingTasks,
dataFromRemote: remoteData,
} = useTasksState();

return (
Expand All @@ -23,7 +22,6 @@ function GeneralTasksProvider({ children }) {
isLoadingTasks,
selectedTaskId,
setSelectedTaskId,
remoteData,
}}
>
{children}
Expand Down

0 comments on commit 7b12c07

Please sign in to comment.