mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 13:43:49 +01:00
Fix double percentage sign in product creation (#395)
This commit is contained in:
parent
b1af58d6a6
commit
3d9993215c
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user