From 11d26a996e64376a7620d30a007d9d6a937d9f5f Mon Sep 17 00:00:00 2001 From: Daniel Riera Date: Wed, 7 May 2025 11:03:33 -0400 Subject: [PATCH] PM-21282 (#14664) --- .../content/components/notification/confirmation/body.ts | 3 +++ .../content/components/notification/confirmation/message.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/apps/browser/src/autofill/content/components/notification/confirmation/body.ts b/apps/browser/src/autofill/content/components/notification/confirmation/body.ts index 5c281071818..1c744be66ac 100644 --- a/apps/browser/src/autofill/content/components/notification/confirmation/body.ts +++ b/apps/browser/src/autofill/content/components/notification/confirmation/body.ts @@ -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, diff --git a/apps/browser/src/autofill/content/components/notification/confirmation/message.ts b/apps/browser/src/autofill/content/components/notification/confirmation/message.ts index 53595b3d797..8f6e817ba77 100644 --- a/apps/browser/src/autofill/content/components/notification/confirmation/message.ts +++ b/apps/browser/src/autofill/content/components/notification/confirmation/message.ts @@ -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;