(scope: string, email: string)
| 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) => |
| 53 | `bb.quick-access.${email}`; |
| 54 | export const storageKeyLastActivity = (email: string) => |
no test coverage detected