Skip to content

Commit

Permalink
remove console.logs;
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamineac committed May 28, 2024
1 parent f48582d commit a262ab1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/GroupCurveChart/GroupCurveChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ const GroupCurveChart: React.FC<GroupCurveChartProps> = (props: GroupCurveChartP
return colorScale;
}, [curves]);

console.log(curvesDomain);

const legendGlyphSize = 15;

const ordinalColorScale = useMemo(() => {
Expand Down
1 change: 0 additions & 1 deletion src/LeafletMap/TimeDimensionLayer/TimeDimensionInfoBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export interface TimeDimensionInfoBoxProps {
}

const InfoBox = ({ surfaceId, timeIndex, timeDimensionTotalLength, surfaceProperties }: TimeDimensionInfoBoxProps) => {
console.log('InfoBox', timeIndex);
return (
<Box>
<Typography variant={'body2'}>Rupture ID: {surfaceId}</Typography>
Expand Down
1 change: 0 additions & 1 deletion src/MfdPlot/MfdPlot.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ const data = [
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const renderCustomTooltip = (tooltipData: any) => {
const datum = tooltipData?.nearestDatum?.datum as Datum;
console.log(tooltipData);
return (
<>
<Typography>Rate: {datum?.rate?.toExponential(2)}</Typography>
Expand Down

0 comments on commit a262ab1

Please sign in to comment.