()
| 155 | * state with no server-side source of truth. |
| 156 | */ |
| 157 | export function loadShowWorkspacePaths(): boolean { |
| 158 | return safeGetJson<boolean>(STORAGE_KEYS.showWorkspacePaths) === true; |
| 159 | } |
| 160 | |
| 161 | export function saveShowWorkspacePaths(show: boolean): void { |
| 162 | safeSetJson(STORAGE_KEYS.showWorkspacePaths, show); |
nothing calls this directly
no test coverage detected