File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
components/app/confirm/info/row/alert-row
pages/confirmations/components/simulation-details Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -108,8 +108,10 @@ export const ConfirmInfoAlertRow = ({
108108 < InlineAlert
109109 alertKey = { alertKey }
110110 severity = { selectedAlertSeverity }
111- showArrow = { selectedAlertShowArrow }
112- textOverride = { selectedAlertInlineAlertText }
111+ showArrow = { Boolean (
112+ selectedAlertShowArrow && selectedAlertInlineAlertText ,
113+ ) }
114+ textOverride = { selectedAlertInlineAlertText || '' }
113115 onClick = { onClickHandler }
114116 />
115117 </ Box >
Original file line number Diff line number Diff line change @@ -355,6 +355,8 @@ const BalanceChangesAlert = ({ transactionId }: { transactionId: string }) => {
355355 < InlineAlert
356356 onClick = { handleInlineAlertClick }
357357 severity = { selectedAlertSeverity }
358+ showArrow = { false }
359+ textOverride = { '' }
358360 />
359361 </ Box >
360362 ) }
You can’t perform that action at this time.
0 commit comments