Skip to content

Commit

Permalink
remove \n from SuccessMessage(#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
Veserion authored Feb 9, 2022
1 parent 4096343 commit 98e7e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layout/Dialogs/TransactionSigning/SuccessMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export const SuccessMessage = (props: IProps) => {
const successMessage = id.map((id, i) => <div key={i}>{makeLink(id)} — succeed<br/></div>);
return <>{successMessage}</>;
} else {
return <>Tx has been sent.\n ID: {makeLink(id)}</>;
return <>Tx has been sent. ID: {makeLink(id)}</>;
}
};

0 comments on commit 98e7e88

Please sign in to comment.