1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-21 11:35:34 +01:00

make data properties optional (#9276)

This commit is contained in:
rr-bw 2024-05-20 13:06:22 -07:00 committed by GitHub
parent ac633687ec
commit ac47cca944
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,9 +6,9 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic
import { Icon } from "@bitwarden/components";
export interface AnonLayoutWrapperData {
pageTitle: string;
pageSubtitle: string;
pageIcon: Icon;
pageTitle?: string;
pageSubtitle?: string;
pageIcon?: Icon;
}
@Component({