()
| 190 | export const clearAuth = () => removeLocal(AUTH_KEY); |
| 191 | |
| 192 | export const loadPendingAuth = async () => { |
| 193 | const result = await getLocal([PENDING_AUTH_KEY]); |
| 194 | const saved = result[PENDING_AUTH_KEY]; |
| 195 | return isPendingAuth(saved) ? saved : null; |
| 196 | }; |
| 197 | |
| 198 | export const loadCachedBootstrap = async () => { |
| 199 | const result = await getLocal([BOOTSTRAP_CACHE_KEY]); |
no test coverage detected