(pinned: PinnedThreadsMap)
| 166 | } |
| 167 | |
| 168 | export function savePinnedThreads(pinned: PinnedThreadsMap) { |
| 169 | if (typeof window === "undefined") { |
| 170 | return; |
| 171 | } |
| 172 | try { |
| 173 | window.localStorage.setItem( |
| 174 | STORAGE_KEY_PINNED_THREADS, |
| 175 | JSON.stringify(pinned), |
| 176 | ); |
| 177 | } catch { |
| 178 | // Best-effort persistence; ignore write failures. |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | export function loadDetachedReviewLinks(): DetachedReviewLinksMap { |
| 183 | if (typeof window === "undefined") { |