Skip to content

Commit

Permalink
変更漏れを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sigprogramming committed Dec 27, 2024
1 parent 332612b commit 9278dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/singing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2955,7 +2955,7 @@ export const singingStore = createPartialStore<SingingStoreTypes>({
await createPromiseThatResolvesWhen(() => {
return !state.nowRendering || state.cancellationOfExportRequested;
});
if (state.cancellationOfLabelExportRequested) {
if (state.cancellationOfExportRequested) {
return createArray(
state.tracks.size,
(): SaveResultObject => ({ result: "CANCELED", path: "" }),
Expand Down

0 comments on commit 9278dbf

Please sign in to comment.