Skip to content

Commit

Permalink
remove unused variables from wrapper component
Browse files Browse the repository at this point in the history
  • Loading branch information
NoraKri committed Dec 17, 2024
1 parent b0c0185 commit b99a31d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions www/src/components/diagram/Pandid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,7 @@ export default function Pandid() {
}}
>
{" "}
<ZoomableSVGWrapper
containerRef={containerRef}
svgWidth={parseInt(String(xmlData.PlantModel.Drawing.Extent.Max.X))}
svgHeight={parseInt(
String(xmlData.PlantModel.Drawing.Extent.Max.Y),
)}
>
<ZoomableSVGWrapper containerRef={containerRef}>
<svg
viewBox={`${xmlData.PlantModel.Drawing.Extent.Min.X} ${xmlData.PlantModel.Drawing.Extent.Min.Y} ${xmlData.PlantModel.Drawing.Extent.Max.X} ${xmlData.PlantModel.Drawing.Extent.Max.Y}`}
width={"100%"}
Expand Down

0 comments on commit b99a31d

Please sign in to comment.