remove console.log(

This commit is contained in:
Romulus21
2023-09-24 16:13:28 +02:00
parent 00e7bd1808
commit f32e1600a8
5 changed files with 1 additions and 5 deletions

View File

@@ -14,7 +14,6 @@ const RainfallGraph: FC<RainfallGraphProps> = ({width, height, data, start_date,
const margin = {top: 10, right: 30, bottom: 30, left: 20}
const gWidth = width - margin.left - margin.right
const gHeight = height - margin.top - margin.bottom
console.log('data', data)
d3.select(svgRef.current).selectAll("*").remove()
const svg = d3.select(svgRef.current)