(key: string)
| 53 | }; |
| 54 | |
| 55 | export const profileNameFromConnectionKey = (key: string): string | null => |
| 56 | key.startsWith("profile:") ? key.slice("profile:".length) : null; |
| 57 | |
| 58 | // A 401 from the server means the stored credential is stale, revoked, or |
| 59 | // missing: a sign-in problem, not a transport problem. Rendered instead of |
no outgoing calls
no test coverage detected