(scope: string, email: string)
| 46 | // --- User-scoped (cleaned on logout) --- |
| 47 | // Workspace-scoped: holds route paths / project names that are workspace-local. |
| 48 | export const storageKeyRecentVisit = (scope: string, email: string) => |
| 49 | withScope("bb.recent-visit", scope, email); |
| 50 | export const storageKeyRecentProjects = (scope: string, email: string) => |
| 51 | withScope("bb.recent-projects", scope, email); |
| 52 | export const storageKeyQuickAccess = (email: string) => |
no test coverage detected