tombatossals/react-chords

Failed to generate some extreme chords

Opened this issue · 1 comments

I was able to create Caug7 (v4) with the code below.
Code sandbox

 const MyChord = () => {
    const chord = {
      frets: [-1, -1, 1, 4, 2, 3],
      fingers: [0, 0, 1, 4, 2, 3],
      barres: [],
      capo: false,
      baseFret: 10,
    }
    const instrument = {
      strings: 6,
      fretsOnChord: 4,
      name: "Guitar",
      keys: ["C"],
      tunings: {
        standard: ["", "", "", "", "", ""],
      },
    }
    const lite = false // defaults to false if omitted
    return <Chord chord={chord} instrument={instrument} lite={lite} />
  }