1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-26 05:03:33 +00:00

add dismissable banner to the vault view when the active autofill tab is on the blocked domains list

This commit is contained in:
Jonathan Prusik
2024-11-15 17:09:46 -05:00
parent 5d60897f27
commit 2f8d2ac3cb
4 changed files with 65 additions and 3 deletions

View File

@@ -21,5 +21,5 @@ export const UriMatchStrategy = {
export type UriMatchStrategySetting = (typeof UriMatchStrategy)[keyof typeof UriMatchStrategy];
// using uniqueness properties of object shape over Set for ease of state storability
export type NeverDomains = { [id: string]: null };
export type NeverDomains = { [id: string]: null | { bannerIsDismissed?: boolean } };
export type EquivalentDomains = string[][];