Bandaid Folders Not Emitting (#8934)

* Bandaid Folders Not Emitting

* Remove VaultFilterComponent Change
This commit is contained in:
Justin Baur 2024-04-26 14:41:57 -04:00 committed by GitHub
parent a4f1a3f13d
commit b482a15d34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export class ForegroundDerivedState<TTo> implements DerivedState<TTo> {
return await this.getStoredValue();
}),
filter((s) => s.derived),
filter((s) => s?.derived === true), // A "remove" storage update will return us null
map((s) => s.value),
);