Skip to content

Commit

Permalink
Fix double percentage sign in product creation (bitburner-official#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamGeorge1999 authored Feb 25, 2023
1 parent b1af58d commit 3d99932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Corporation/ui/ProductElem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export function ProductElem(props: IProductProps): React.ReactElement {
Designing {product.name} (req. Operations/Engineers in {product.createCity})...
</Typography>
<br />
<Typography>{formatPercent(product.prog / 100, 2)}% complete</Typography>
<Typography>{formatPercent(product.prog / 100, 2)} complete</Typography>
<Button onClick={() => setCancelOpen(true)}>Cancel</Button>
<CancelProductModal
product={product}
Expand Down

0 comments on commit 3d99932

Please sign in to comment.