Skip to content

Commit

Permalink
真偽値が間違っていたのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takusea committed Nov 19, 2024
1 parent a10129a commit cfa2dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dialog/HotkeySettingDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const confirmAndDeleteHotkey = async (action: string) => {
cancel: "未割り当てにしない",
});
if (result !== "OK") {
if (result === "OK") {
deleteHotkey(action);
}
};
Expand Down

0 comments on commit cfa2dd5

Please sign in to comment.