From fc1bf6714c9cd52a0f06022b6d54a76c64707358 Mon Sep 17 00:00:00 2001 From: Nik Graf Date: Tue, 12 Aug 2025 17:45:51 +0200 Subject: [PATCH] store new appIdentity public keys instead of account public keys with the appIdentity --- apps/connect/src/routes/authenticate.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/connect/src/routes/authenticate.tsx b/apps/connect/src/routes/authenticate.tsx index a26376ea..a95fd630 100644 --- a/apps/connect/src/routes/authenticate.tsx +++ b/apps/connect/src/routes/authenticate.tsx @@ -385,8 +385,8 @@ function AuthenticateComponent() { appId: state.appInfo.appId, address: newAppIdentity.address, accountAddress, - signaturePublicKey: keys.signaturePublicKey, - encryptionPublicKey: keys.encryptionPublicKey, + signaturePublicKey: newAppIdentity.signaturePublicKey, + encryptionPublicKey: newAppIdentity.encryptionPublicKey, ciphertext, accountProof, keyProof,