()
| 85 | const isExtension = checkIsExtension(); |
| 86 | const AuthContext = React.createContext<AuthContextData>(null); |
| 87 | export const useAuthContext = (): AuthContextData => useContext(AuthContext); |
| 88 | export default AuthContext; |
| 89 | |
| 90 | export const getQueryParams = (): Record<string, string> => { |
no outgoing calls
no test coverage detected