diff --git a/src/Corporation/ui/Overview.jsx b/src/Corporation/ui/Overview.jsx index c33297e3c..fe6f17904 100644 --- a/src/Corporation/ui/Overview.jsx +++ b/src/Corporation/ui/Overview.jsx @@ -60,7 +60,7 @@ export class Overview extends BaseReactComponent { let txt = "Total Funds: " + numeralWrapper.format(this.corp().funds.toNumber(), '$0.000a') + "
" + "Total Revenue: " + numeralWrapper.format(this.corp().revenue.toNumber(), "$0.000a") + " / s
" + - "Total Expenses: " + numeralWrapper.format(this.corp().expenses.toNumber(), "$0.000a") + "/ s
" + + "Total Expenses: " + numeralWrapper.format(this.corp().expenses.toNumber(), "$0.000a") + " / s
" + "Total Profits: " + profitStr + " / s
" + dividendStr + "Publicly Traded: " + (this.corp().public ? "Yes" : "No") + "
" +