Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
brauliodiez committed Dec 3, 2024
1 parent f1cdd5f commit 23dc600
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,9 @@ export const HorizontalMenu = forwardRef<any, ShapeProps>((props, ref) => {
...shapeProps
} = props;

console.log('text' + text);
const csvData = splitCSVContentIntoRows(text);
console.log('csvData ' + csvData);
const headers = extractCSVHeaders(csvData[0]);
console.log('headers ' + headers);
const itemLabels = headers.map(header => header.text);
console.log('itemLabels ' + itemLabels);

const numberOfItems = itemLabels.length;
const itemSpacing = 10;
Expand Down Expand Up @@ -74,8 +70,6 @@ export const HorizontalMenu = forwardRef<any, ShapeProps>((props, ref) => {
ref
);

console.log(text);

return (
<Group {...commonGroupProps} {...shapeProps}>
<Rect
Expand Down

0 comments on commit 23dc600

Please sign in to comment.