(id: string)
| 75 | } |
| 76 | |
| 77 | export function saveActiveWorkspaceId(id: string): void { |
| 78 | setLocalStorageItemWithRecovery(ACTIVE_WORKSPACE_KEY, id); |
| 79 | } |
| 80 | |
| 81 | export function normalizeRelayUrl(url: string): string { |
| 82 | if (!url.startsWith("ws://") && !url.startsWith("wss://")) { |
no test coverage detected