Skip to content

Commit afc3481

Browse files
committed
Update
1 parent 81af0f7 commit afc3481

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/components/Views/confirmations/components/UI/info-row/info-row.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import styleSheet from './info-row.styles';
1515
import CopyIcon from './copy-icon/copy-icon';
1616

1717
export interface InfoRowProps {
18-
label: string;
18+
label?: string;
1919
children?: ReactNode | string;
2020
onTooltipPress?: () => void;
2121
tooltip?: ReactNode;

app/components/Views/confirmations/components/rows/transactions/from-to-row/from-to-row.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const FromToRow = () => {
5757

5858
<View style={[styles.nameContainer, styles.rightNameContainer]}>
5959
{/* Intentional empty label to trigger the alert row without a label */}
60-
<AlertRow alertField={RowAlertKey.BurnAddress} label={''}>
60+
<AlertRow alertField={RowAlertKey.BurnAddress}>
6161
<Name
6262
type={NameType.EthereumAddress}
6363
value={toAddress as string}

0 commit comments

Comments
 (0)