From eca35f51acdca1cc76dd77538ce4c80bf9209a94 Mon Sep 17 00:00:00 2001 From: calli Date: Wed, 23 Apr 2025 11:32:19 +0300 Subject: [PATCH] Use nextjs Image instead of html img --- .../PlanetaryInteraction/ProductionChainVisualization.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/components/PlanetaryInteraction/ProductionChainVisualization.tsx b/src/app/components/PlanetaryInteraction/ProductionChainVisualization.tsx index d1381fd..f5a2e31 100644 --- a/src/app/components/PlanetaryInteraction/ProductionChainVisualization.tsx +++ b/src/app/components/PlanetaryInteraction/ProductionChainVisualization.tsx @@ -1,9 +1,10 @@ import React from 'react'; -import { Box, Paper, Typography, Grid, Stack, Divider, Tooltip } from '@mui/material'; +import { Box, Paper, Typography, Grid, Stack } from '@mui/material'; import { EVE_IMAGE_URL } from '@/const'; import { PI_TYPES_MAP } from '@/const'; import { DateTime } from 'luxon'; import Countdown from 'react-countdown'; +import Image from 'next/image'; interface Factory { schematic_id: number; @@ -291,7 +292,7 @@ export const ProductionChainVisualization: React.FC -