Skip to content

Commit

Permalink
fix: 初回起動時の利用規約への同意ボタンの挙動が逆になっているのを直す (VOICEVOX#2392)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Dec 6, 2024
1 parent 2407bfc commit 47fc821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dialog/AcceptDialog/AcceptTermsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const handler = (acceptTerms: boolean) => {
void store.actions.SET_ACCEPT_TERMS({
acceptTerms: acceptTerms ? "Accepted" : "Rejected",
});
if (acceptTerms) {
if (!acceptTerms) {
void store.actions.CHECK_EDITED_AND_NOT_SAVE({
closeOrReload: "close",
});
Expand Down

0 comments on commit 47fc821

Please sign in to comment.