📦 Chore(custom): remove unneeded console.log

This commit is contained in:
Kuingsmile
2025-11-14 11:26:53 +08:00
parent 50a84e9e9f
commit 86b122c443

View File

@@ -152,7 +152,6 @@ function calcOriginShowName(item: string) {
function toggleEnable(item: IShortKeyConfig) {
const status = !item.enable
item.enable = status
console.log('Toggling shortKey:', item.name, 'to', status ? 'enabled' : 'disabled')
window.electron.sendRPC(IRPCActionType.SHORTKEY_BIND_OR_UNBIND, getRawData(item), item.from || '')
}