Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
holtzy committed Nov 12, 2024
1 parent 035756d commit 852a9a0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions pages/course/scales/other-scale-types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,6 @@ colorScale("b") // --> green
]}
/>

<blockquote>TODOOOOOOOOO</blockquote>
<Graph12 />
{/* -
-
-
Expand Down
2 changes: 1 addition & 1 deletion viz/exercise/ScaleFourBarsPractice/Graph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const data = [
},
];

export const Graph12 = () => {
export const Graph = () => {
const xScale = '';

const yScale = '';
Expand Down
2 changes: 1 addition & 1 deletion viz/exercise/ScaleFourBarsSolution/Graph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const data = [
},
];

export const Graph12 = () => {
export const Graph = () => {
const xScale = scaleLinear().domain([0, 100]).range([0, width]);

const yScale = scaleBand()
Expand Down

0 comments on commit 852a9a0

Please sign in to comment.