mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 19:53:59 +00:00
prefer no !
This commit is contained in:
@@ -19,7 +19,7 @@ import {
|
||||
*/
|
||||
function buildKeyDefinition<T>(key: string): UserKeyDefinition<T> {
|
||||
return new UserKeyDefinition<T>(ORGANIZATION_MANAGEMENT_PREFERENCES_DISK, key, {
|
||||
deserializer: (obj) => obj! as T,
|
||||
deserializer: (obj) => obj as T | null,
|
||||
clearOn: ["logout"],
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user