Skip to content

Commit

Permalink
removed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ametel01 committed Feb 2, 2024
1 parent 1ad76a1 commit 031de89
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/frontend/src/components/modals/PlanetOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,7 @@ interface Props {
export default function PlanetModal({ planetId, image, position }: Props) {
const spendableResources = useSpendableResources(Number(planetId));
const collectibleResources = useCollectibleResources(Number(planetId));
console.log('planetId', planetId);
const [planet, colony] = getPlanetAndColonyIds(planetId);
console.log('planet', planet);
console.log('colony', colony);

const shipsLevels = useShipsLevels(Number(planetId));
const colonyShips = useGetColonyShips(planet, colony);
Expand All @@ -142,7 +139,6 @@ export default function PlanetModal({ planetId, image, position }: Props) {
? defencesLevels
: colonyDefences && colonyDefences;

console.log('actualDefences', actualDefences);
const colonyResources = useGetColonyResources(planet, colony);

const [isModalOpen, setIsModalOpen] = React.useState(false);
Expand Down

0 comments on commit 031de89

Please sign in to comment.