Skip to content

Commit

Permalink
fix(codesandbox): fix typo in jsx prop assignment (#1960)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdefore authored May 10, 2022
1 parent d15406e commit 2d8aaaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/codesandbox/src/charts/Chord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export function Chord() {
const [data, flavor] = useChart(() => generateChordData({ size: 7 }))

if (flavor === 'canvas') {
return <ResponsiveChordCanvas {...props} data{data.matrix} keys={data.keys} />
return <ResponsiveChordCanvas {...props} data={data.matrix} keys={data.keys} />
}

return <ResponsiveChord {...props} data{data.matrix} keys={data.keys} />
return <ResponsiveChord {...props} data={data.matrix} keys={data.keys} />
}

0 comments on commit 2d8aaaf

Please sign in to comment.