diff --git a/packages/ui-extensions/src/surfaces/customer-account/components/Page/Page.ts b/packages/ui-extensions/src/surfaces/customer-account/components/Page/Page.ts index 1ce3bb317..fb42a8d9d 100644 --- a/packages/ui-extensions/src/surfaces/customer-account/components/Page/Page.ts +++ b/packages/ui-extensions/src/surfaces/customer-account/components/Page/Page.ts @@ -38,6 +38,13 @@ export interface PageProps { * When there are 3 or more, the first one is displayed and the rest will be displayed in a dropdown. */ actions?: RemoteFragment; + + /** + * The label to be used in the dropdown that contains the actions when ther are 3 or more actions. + * Optional. + * Defaults to "More actions". + */ + actionsLabel?: string; } export const Page = createRemoteComponent<'Page', PageProps>('Page');