()
| 19 | } |
| 20 | |
| 21 | export function clearAccessToken(): void { |
| 22 | localStorage.removeItem('access_token') |
| 23 | localStorage.removeItem('code_verifier') |
| 24 | } |
| 25 | |
| 26 | // Generate code verifier for PKCE flow |
| 27 | function generateCodeVerifier(): string { |
no outgoing calls
no test coverage detected