From 3a13e6e210fddd73fdce7f4cde4f7119153f224a Mon Sep 17 00:00:00 2001 From: Isaiah Inuwa Date: Wed, 5 Nov 2025 22:39:25 -0600 Subject: [PATCH] Return a real number for number of credentials synced --- .../src/platform/main/autofill/native-autofill.windows.main.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/desktop/src/platform/main/autofill/native-autofill.windows.main.ts b/apps/desktop/src/platform/main/autofill/native-autofill.windows.main.ts index d1ab9cd0148..4070687a2bf 100644 --- a/apps/desktop/src/platform/main/autofill/native-autofill.windows.main.ts +++ b/apps/desktop/src/platform/main/autofill/native-autofill.windows.main.ts @@ -357,8 +357,7 @@ export class NativeAutofillWindowsMain { passkey_authenticator.syncCredentialsToWindows(mappedCredentials); - // TODO: Return a meaningful result - const res = { value: { added: 999 } } as RunCommandResult; + const res = { value: { added: mappedCredentials.length } } as RunCommandResult; return res; } catch (e) { this.logService.error(`Error running autofill command '${command.command}':`, e);