(event: StorageEvent)
| 230 | } |
| 231 | |
| 232 | const handleStorage = (event: StorageEvent) => { |
| 233 | if (event.key && workspaceLastReadKeys.has(event.key)) { |
| 234 | bumpVersion(); |
| 235 | } |
| 236 | }; |
| 237 | |
| 238 | const unsubscribeWorkspaceStore = Array.from(workspaceIds.values()).map((workspaceId) => |
| 239 | workspaceStore.subscribeKey(workspaceId, () => { |
nothing calls this directly
no test coverage detected