diff --git a/packages/core/src/ui/components/ConfirmDRepRegistration/ConfirmDRepRegistration.tsx b/packages/core/src/ui/components/ConfirmDRepRegistration/ConfirmDRepRegistration.tsx
index 9246cb3c8b..644b457fed 100644
--- a/packages/core/src/ui/components/ConfirmDRepRegistration/ConfirmDRepRegistration.tsx
+++ b/packages/core/src/ui/components/ConfirmDRepRegistration/ConfirmDRepRegistration.tsx
@@ -34,23 +34,31 @@ export const ConfirmDRepRegistration = ({ dappInfo, errorMessage, translations,
)}
|
-
+
|
{metadata.url && (
-
+
|
)}
{metadata.hash && (
-
+
|
)}
-
+
|
-
+
|
diff --git a/packages/core/src/ui/components/ConfirmDRepRetirement/ConfirmDRepRetirement.tsx b/packages/core/src/ui/components/ConfirmDRepRetirement/ConfirmDRepRetirement.tsx
index ece0e83d6a..59219813a8 100644
--- a/packages/core/src/ui/components/ConfirmDRepRetirement/ConfirmDRepRetirement.tsx
+++ b/packages/core/src/ui/components/ConfirmDRepRetirement/ConfirmDRepRetirement.tsx
@@ -31,13 +31,21 @@ export const ConfirmDRepRetirement = ({ dappInfo, errorMessage, translations, me
)}
-
+
|
-
+
|
-
+
|
diff --git a/packages/core/src/ui/components/ConfirmDRepUpdate/ConfirmDRepUpdate.tsx b/packages/core/src/ui/components/ConfirmDRepUpdate/ConfirmDRepUpdate.tsx
index d712827f1a..e86ee2b772 100644
--- a/packages/core/src/ui/components/ConfirmDRepUpdate/ConfirmDRepUpdate.tsx
+++ b/packages/core/src/ui/components/ConfirmDRepUpdate/ConfirmDRepUpdate.tsx
@@ -33,20 +33,24 @@ export const ConfirmDRepUpdate = ({ dappInfo, errorMessage, translations, metada
)}
-
+
|
{metadata.url && (
-
+
|
)}
{metadata.hash && (
-
+
|
)}
-
+
|
diff --git a/packages/core/src/ui/components/ConfirmVoteDelegation/ConfirmVoteDelegation.tsx b/packages/core/src/ui/components/ConfirmVoteDelegation/ConfirmVoteDelegation.tsx
index eebab72b21..4eae2a274b 100644
--- a/packages/core/src/ui/components/ConfirmVoteDelegation/ConfirmVoteDelegation.tsx
+++ b/packages/core/src/ui/components/ConfirmVoteDelegation/ConfirmVoteDelegation.tsx
@@ -34,21 +34,33 @@ export const ConfirmVoteDelegation = ({ dappInfo, errorMessage, translations, me
)}
-
+
|
{metadata.drepId && (
-
+
|
)}
{metadata.alwaysAbstain && (
-
+
|
)}
{metadata.alwaysNoConfidence && (
-
+
|
)}
diff --git a/packages/ui/src/design-system/transaction-summary/transaction-summary-address.component.tsx b/packages/ui/src/design-system/transaction-summary/transaction-summary-address.component.tsx
index 83234cfa01..087402100f 100644
--- a/packages/ui/src/design-system/transaction-summary/transaction-summary-address.component.tsx
+++ b/packages/ui/src/design-system/transaction-summary/transaction-summary-address.component.tsx
@@ -11,23 +11,33 @@ import type { OmitClassName } from '../../types';
type Props = OmitClassName<'div'> & {
label: string;
address: string;
+ testID?: string;
};
export const Address = ({
label,
address,
+ testID,
...props
}: Readonly): JSX.Element => {
return (
-
+
{label}
|
- {address}
+
+ {address}
+
|
diff --git a/packages/ui/src/design-system/transaction-summary/transaction-summary-metadata.component.tsx b/packages/ui/src/design-system/transaction-summary/transaction-summary-metadata.component.tsx
index 82d4d0c05f..ccde339e44 100644
--- a/packages/ui/src/design-system/transaction-summary/transaction-summary-metadata.component.tsx
+++ b/packages/ui/src/design-system/transaction-summary/transaction-summary-metadata.component.tsx
@@ -11,23 +11,32 @@ import type { OmitClassName } from '../../types';
type Props = OmitClassName<'div'> & {
label: string;
text: string;
+ testID?: string;
};
export const Metadata = ({
label,
text,
+ testID,
...props
}: Readonly): JSX.Element => {
return (
-
+
{label}
|
-
+
{text}
|