(userId?: string)
| 178 | // store is keyed by account: without it a second login on the same machine |
| 179 | // inherits the first one's rail density and pinned dock. |
| 180 | const clientOnlyFlagsKey = (userId?: string): string => |
| 181 | generateStorageKey( |
| 182 | StorageTopic.Settings, |
| 183 | 'clientOnlyFlags', |
| 184 | userId ?? 'anonymous', |
| 185 | ); |
| 186 | |
| 187 | const legacyClientOnlyFlagsKey = generateStorageKey( |
| 188 | StorageTopic.Settings, |
no test coverage detected