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