fix: Build-Fehler behoben durch Entfernen unnötiger Prop-Weitergabe
- `isFullScreen` wurde in `ChartSwitcher.tsx` nicht mehr als Prop übergeben - `LoopMeasurementChart.tsx` und `TDRChart.tsx` nutzen Redux-Store direkt - Build erfolgreich nach Anpassung
This commit is contained in:
@@ -115,7 +115,7 @@ const ChartSwitcher: React.FC<ChartSwitcherProps> = ({ isOpen, onClose }) => {
|
||||
<h3 className="text-lg font-semibold">Schleifenmessung</h3>
|
||||
<LoopChartActionBar />
|
||||
<div style={{ flex: 1, height: "90%" }}>
|
||||
<LoopMeasurementChart isFullScreen={isFullScreen} />
|
||||
<LoopMeasurementChart />
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
@@ -123,7 +123,7 @@ const ChartSwitcher: React.FC<ChartSwitcherProps> = ({ isOpen, onClose }) => {
|
||||
<h3 className="text-lg font-semibold">TDR-Messung</h3>
|
||||
<TDRChartActionBar />
|
||||
<div style={{ flex: 1, height: "90%" }}>
|
||||
<TDRChart isFullScreen={isFullScreen} />
|
||||
<TDRChart />
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user