From 6b7cab6ac4a8b31f4d52f12e0d1a8f6694bcc98e Mon Sep 17 00:00:00 2001 From: myCatsName <141260118+myCatsName@users.noreply.github.com> Date: Sat, 5 Aug 2023 18:58:26 -0600 Subject: [PATCH] IssueNewShares Modal spacing typo fix (#715) --- src/Corporation/ui/modals/IssueNewSharesModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Corporation/ui/modals/IssueNewSharesModal.tsx b/src/Corporation/ui/modals/IssueNewSharesModal.tsx index f12bc5094..f3fc4ee24 100644 --- a/src/Corporation/ui/modals/IssueNewSharesModal.tsx +++ b/src/Corporation/ui/modals/IssueNewSharesModal.tsx @@ -66,7 +66,7 @@ export function IssueNewSharesModal(props: IProps): React.ReactElement { let dialogContents = `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)}`; dialogBoxCreate(dialogContents);