Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
chore(): remove console log
Browse files Browse the repository at this point in the history
Signed-off-by: reslene <reslene@numary.com>
  • Loading branch information
reslene committed Apr 26, 2023
1 parent 0a76ca8 commit fb3276e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/src/components/Dataviz/Charts/Line/Line.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const Line: FunctionComponent<LineProps> = ({
sxTitle = titleSx,
sxSubtitle = subtitleSx,
}) => {
console.log(sxTitle);
const { t } = useTranslation();
if (data.datasets.length === 0 || data.labels.length === 0) {
return (
Expand Down
1 change: 0 additions & 1 deletion app/src/components/Dataviz/Charts/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ export const buildChart = (
reverseDateFormat = 'LT',
type = ChartTypes.LINE
): Chart => {
console.log(type);
if (type === ChartTypes.LINE) {
datasets.forEach((dataset: ChartDataset) => {
const dataFormated = labels.map(() => 0);
Expand Down

0 comments on commit fb3276e

Please sign in to comment.