(workspaceId: string, threadId: string)
| 143 | } |
| 144 | |
| 145 | export function makePinKey(workspaceId: string, threadId: string): string { |
| 146 | return `${workspaceId}:${threadId}`; |
| 147 | } |
| 148 | |
| 149 | export function loadPinnedThreads(): PinnedThreadsMap { |
| 150 | if (typeof window === "undefined") { |