IssueNewShares Modal spacing typo fix (#715)

This commit is contained in:
myCatsName 2023-08-05 18:58:26 -06:00 committed by GitHub
parent 2e84512881
commit 6b7cab6ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -66,7 +66,7 @@ export function IssueNewSharesModal(props: IProps): React.ReactElement {
let dialogContents = let dialogContents =
`Issued ${formatShares(newShares)} new shares` + ` and raised ${formatMoney(profit)}.` + (privateShares > 0) `Issued ${formatShares(newShares)} new shares` + ` and raised ${formatMoney(profit)}.` + (privateShares > 0)
? "\n" + formatShares(privateShares) + "of these shares were bought by private investors." ? "\n" + formatShares(privateShares) + " of these shares were bought by private investors."
: ""; : "";
dialogContents += `\n\nStock price decreased to ${formatMoney(corp.sharePrice)}`; dialogContents += `\n\nStock price decreased to ${formatMoney(corp.sharePrice)}`;
dialogBoxCreate(dialogContents); dialogBoxCreate(dialogContents);