diff --git a/src-tauri/src/commands/clipboard.rs b/src-tauri/src/commands/clipboard.rs index 25248ca..1f51e72 100644 --- a/src-tauri/src/commands/clipboard.rs +++ b/src-tauri/src/commands/clipboard.rs @@ -89,8 +89,6 @@ pub async fn clear_clipboards() -> Result { pub async fn type_clipboard() -> Result { let clipboard = get_last_clipboard_db().await; - println!("test"); - if clipboard.is_ok() { let r#type = &clipboard.as_ref().unwrap().r#type; diff --git a/src/utils/hotkeyRegister.ts b/src/utils/hotkeyRegister.ts index 97cbdec..fec1066 100644 --- a/src/utils/hotkeyRegister.ts +++ b/src/utils/hotkeyRegister.ts @@ -51,7 +51,6 @@ export async function registerHotkeys(hotkeys: Hotkey[]) { const typeHotkey = hotkeys.find((h) => h.event === "type_clipboard"); if (typeHotkey?.status && !(await isRegistered(typeHotkey.shortcut))) { try { - console.log(typeHotkey.shortcut); await register(typeHotkey.shortcut, () => invoke("type_clipboard")); } catch (_) {} }