Skip to content

Commit

Permalink
generatedPhrasesに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
sigprogramming committed Dec 23, 2024
1 parent 8014d8e commit 0d92367
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/store/singing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1790,7 +1790,7 @@ export const singingStore = createPartialStore<SingingStoreTypes>({
phraseFirstRestMinDurationSeconds: number,
trackId: TrackId,
) => {
const generatePhrases = new Map<PhraseKey, Phrase>();
const generatedPhrases = new Map<PhraseKey, Phrase>();

let phraseNotes: Note[] = [];
let prevPhraseLastNote: Note | undefined = undefined;
Expand Down Expand Up @@ -1827,7 +1827,7 @@ export const singingStore = createPartialStore<SingingStoreTypes>({
startTime: phraseStartTime,
trackId,
});
generatePhrases.set(phraseKey, {
generatedPhrases.set(phraseKey, {
firstRestDuration: phraseFirstRestDuration,
notes: phraseNotes,
startTime: phraseStartTime,
Expand All @@ -1841,7 +1841,7 @@ export const singingStore = createPartialStore<SingingStoreTypes>({
}
}
}
return generatePhrases;
return generatedPhrases;
};

const generateQuerySource = (
Expand Down

0 comments on commit 0d92367

Please sign in to comment.