diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index e433c47..c696613 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -157,7 +157,6 @@ pub fn run() { commands::list_activated_machines, commands::get_activation_status, commands::start_oauth, - commands::handle_auth_callback, commands::refresh_auth_token, commands::get_account_info, commands::check_subscription_status, diff --git a/src/services/authService.ts b/src/services/authService.ts index c24540a..845e961 100644 --- a/src/services/authService.ts +++ b/src/services/authService.ts @@ -11,10 +11,6 @@ export async function startOAuth(): Promise { return invoke("start_oauth"); } -export async function handleAuthCallback(code: string): Promise { - return invoke("handle_auth_callback", { code }); -} - export async function refreshAuthToken(): Promise { return invoke("refresh_auth_token"); }