We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eae2b6 commit 5f5a5a3Copy full SHA for 5f5a5a3
src/state/KindeContext.ts
@@ -1,5 +1,4 @@
1
import { createContext } from "react";
2
-import { initialState } from "./initialState";
3
import { LogoutOptions, State } from "./types";
4
import type {
5
getClaim,
@@ -43,10 +42,6 @@ export interface KindeContextProps extends State {
43
42
) => Promise<{ url: URL }>;
44
}
45
46
-const initialContext = {
47
- ...initialState,
48
-};
49
-
50
export const KindeContext = createContext<KindeContextProps | null>(
51
null
52
);
0 commit comments