change isk/h to isk per month

This commit is contained in:
Calli
2023-07-16 19:51:00 +03:00
parent c7f3a9b7c6
commit 0214b82e14
2 changed files with 6 additions and 4 deletions

View File

@@ -295,10 +295,12 @@ export const PlanetTableRow = ({
fontSize={theme.custom.smallText}
>
{`${(
((piPrices?.appraisal.items.find((a) => a.typeID === e.typeId)
(((piPrices?.appraisal.items.find((a) => a.typeID === e.typeId)
?.prices.sell.min ?? 0) *
e.amount) /
1000000
1000000) *
24 *
30
).toFixed(2)} M`}
</Typography>
))}

View File

@@ -79,8 +79,8 @@ const PlanetaryIteractionTable = ({
</Tooltip>
</TableCell>
<TableCell width="5%">
<Tooltip title="How many million ISK per hour this planet is exporting (Jita sell min)">
<Typography>MISK/h</Typography>
<Tooltip title="How many million ISK per month this planet is exporting (Jita sell min)">
<Typography>ISK/M</Typography>
</Tooltip>
</TableCell>
</TableRow>