fixed type errors
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { createContext, useContext, type SetStateAction } from "react";
|
||||
import type { NPEDCameraConfig, NPEDUser } from "../types/types";
|
||||
import type { NPEDUser } from "../types/types";
|
||||
|
||||
type UserContextValue = {
|
||||
user: NPEDCameraConfig | null;
|
||||
user: NPEDUser | null;
|
||||
setUser: React.Dispatch<SetStateAction<NPEDUser | null>>;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user