Skip to content

Commit a6ba56f

Browse files
chore (TCDICORE-475): remove console.log
1 parent d5071a5 commit a6ba56f

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

packages/commons/src/ChartColors.jsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,7 @@ export const ChartColors = (props) => {
412412
return null
413413
}
414414

415-
const csvColors = (colorByParams) => {
416-
console.log("color by params...", colorByParams)
417-
console.log("csv colors...", manualColors, colorBy)
415+
const csvColors = () => {
418416
const data = Papa.parse(csv, {header: true, dynamicTyping: true});
419417
const values = [];
420418

@@ -533,7 +531,7 @@ export const ChartColors = (props) => {
533531
{/* CSV CHART*/}
534532

535533
{app == "csv" && <PanelBody initialOpen={false} title={__("Set Colors")}>
536-
{csvColors(colorBy)}
534+
{csvColors()}
537535
</PanelBody>}
538536

539537

0 commit comments

Comments
 (0)