Merge branch 'dev' of github.com:danielyxie/bitburner into dev

This commit is contained in:
Olivier Gagnon 2022-09-27 13:35:56 -04:00
commit c94f6c1758

@ -100,14 +100,16 @@ export function UpgradeOfficeSizeModal(props: IProps): React.ReactElement {
cost={upgradeCost15} cost={upgradeCost15}
size={CorporationConstants.OfficeInitialSize * 5} size={CorporationConstants.OfficeInitialSize * 5}
/> />
<UpgradeSizeButton {maxNum !== 1 && maxNum !== 5 && (
onClose={props.onClose} <UpgradeSizeButton
rerender={props.rerender} onClose={props.onClose}
office={props.office} rerender={props.rerender}
corp={corp} office={props.office}
cost={upgradeCostMax} corp={corp}
size={maxNum * CorporationConstants.OfficeInitialSize} cost={upgradeCostMax}
/> size={maxNum * CorporationConstants.OfficeInitialSize}
/>
)}
</Box> </Box>
</Modal> </Modal>
); );