rm ts-ignore

This commit is contained in:
Hailey
2024-08-20 09:01:22 -07:00
parent a1d2f670fb
commit 6d65f5e8cb
+1 -11
View File
@@ -21,17 +21,7 @@ type Context = {
}
}
const Context = React.createContext<Context>({
isContentVisible: false,
setIsContentVisible: () => {},
// @ts-ignore
info: {},
showInfoDialog: () => {},
meta: {
isNoPwi: false,
noOverride: false,
},
})
const Context = React.createContext<Context>({} as Context)
export const useScreenHider = () => React.useContext(Context)