1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00
This commit is contained in:
Daniel Riera
2025-05-07 11:03:33 -04:00
committed by GitHub
parent 574891d617
commit 11d26a996e
2 changed files with 4 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ export type NotificationConfirmationBodyProps = {
buttonText: string;
confirmationMessage: string;
error?: string;
itemName?: string;
messageDetails?: string;
tasksAreComplete?: boolean;
theme: Theme;
@@ -30,6 +31,7 @@ export function NotificationConfirmationBody({
buttonText,
confirmationMessage,
error,
itemName,
messageDetails,
tasksAreComplete,
theme,
@@ -46,6 +48,7 @@ export function NotificationConfirmationBody({
? NotificationConfirmationMessage({
buttonAria,
buttonText,
itemName,
message: confirmationMessage,
messageDetails,
theme,

View File

@@ -8,6 +8,7 @@ import { themes, typography } from "../../constants/styles";
export type NotificationConfirmationMessageProps = {
buttonAria?: string;
buttonText?: string;
itemName?: string;
message?: string;
messageDetails?: string;
handleClick: (e: Event) => void;