diff --git a/src/Overview/TimeAxis.tsx b/src/Overview/TimeAxis.tsx index 058dd1b..9898fe5 100644 --- a/src/Overview/TimeAxis.tsx +++ b/src/Overview/TimeAxis.tsx @@ -72,7 +72,6 @@ const getBarSpec = executionData => { const spec = { $schema: 'https://vega.github.io/schema/vega-lite/v5.json', - description: 'A simple bar chart with embedded data.', data: { values: executionData }, @@ -142,6 +141,5 @@ const getBarSpec = executionData => { } ] } as VisualizationSpec; - console.log('spec', spec); return spec; };