diff --git a/src/app/components/PlanetaryInteraction/PlanetTableRow.tsx b/src/app/components/PlanetaryInteraction/PlanetTableRow.tsx index be11917..d6df226 100644 --- a/src/app/components/PlanetaryInteraction/PlanetTableRow.tsx +++ b/src/app/components/PlanetaryInteraction/PlanetTableRow.tsx @@ -62,7 +62,9 @@ export const PlanetTableRow = ({ const planetInfoUniverse = planet.infoUniverse; const { expired, extractors, localProduction, localImports, localExports } = planetCalculations(planet); - const planetConfig = character.planetConfig.find(p => p.planetId === planet.planet_id) + const planetConfig = character.planetConfig.find( + (p) => p.planetId === planet.planet_id, + ); const { colors } = useContext(ColorContext); return ( - {PI_TYPES_MAP[i.type_id].name} + {PI_TYPES_MAP[i.type_id].name} ({i.quantity}/h) ))} @@ -167,7 +169,7 @@ export const PlanetTableRow = ({ key={`export-excluded-${character.character.characterId}-${planet.planet_id}-${exports.typeId}`} fontSize={theme.custom.smallText} > - {planetConfig?.excludeFromTotals ? 'ex' : ''} + {planetConfig?.excludeFromTotals ? "ex" : ""} ))}