Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavlenko committed Sep 26, 2024
1 parent c9fe3bc commit c05f7cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect, useCallback } from "react";
import "./App.css";
import { CORPUS } from "./tinyCorpus";
import { CORPUS } from "./corpus";
import * as Tone from "tone";
import { Song } from "./corpus";
import guitarChords from "./guitarChords";
Expand Down Expand Up @@ -232,6 +232,7 @@ function App() {
const rootMapping: { [key: string]: string } = {
Db: "Csharp",
"D#": "Eb",
"F#": "Fsharp",
Gb: "Fsharp",
"G#": "Ab",
"A#": "Bb",
Expand Down Expand Up @@ -300,6 +301,7 @@ function App() {
if (suffix === "11") return "11";
if (suffix === "9#11") return "9#11";
if (suffix === "13") return "13";
if (suffix === "o7") return "dim7";

return suffix;
};
Expand Down

0 comments on commit c05f7cc

Please sign in to comment.