Skip to content

Commit

Permalink
feat: Only render line break when >1 transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
morgsmccauley committed Mar 17, 2022
1 parent a1a33d9 commit 77a1fe2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,9 @@ const TwoFactorVerifyModal = ({ open, onClose }) => {
<p className='color-black font-bw' style={{ marginTop: '-10px', fontWeight: '500', height: '19px'}}>{method && method.detail}</p>
{multisigRequest && (
<AlertBanner theme='alert'>
{getTranslationsFromMultisigRequest(multisigRequest).map(({ id, data }) => (
<>
<Translate id={id} data={data} />
<br />
{index !== arr.length - 1 && <br />}
</>
))}
</AlertBanner>
Expand Down

0 comments on commit 77a1fe2

Please sign in to comment.