Skip to content

Commit

Permalink
Merge pull request #13 from Holo-Host/hotfix/fix-signature-3
Browse files Browse the repository at this point in the history
Hotfix/fix signature 3
  • Loading branch information
mrruby authored Jul 16, 2024
2 parents 050afd5 + 2516bbe commit c9b0868
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,16 @@ export function createSignInWithKeyMutation(queryClient: QueryClient) {
(app) => app.happId === happId && app.keyName === keyName
);

const pubKey = await deriveSignPubKey(index + DEEP_KEY_AGENT_OFFSET);
const appIndex = index + DEEP_KEY_AGENT_OFFSET;

const pubKey = await deriveSignPubKey(appIndex);

storageService.set({
key: AUTHENTICATED_APPS_LIST,
value: {
...currentAuthenticatedAppsListData,
[happId]: {
index: index,
index: appIndex,
origin
}
},
Expand Down
2 changes: 1 addition & 1 deletion holo-key-manager-extension/static/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Holo key manager",
"description": "A browser extension to manage holo keys",
"version": "0.0.72",
"version": "0.0.73",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiAtKvbHNTN3O2BLRZH7RkLczaMLenSeZu+YP+KomPQPZ18nt4DY9boIN/+GWts7gCzEeQq59l8edGdF2P7xAbsRxYR88+zFEbxMtIyfyqJZIlzXwnvPJkwGu/S6arNtX48K7q1+xnJEE7VyeYSj6/i2LR+LmPigCzY9JCP7+SmWVeYbdm3kZmReK0ecfh15RXSNjZpXJUgrbea/RVxweggYKnmhhOUBmuJSCLoWTXIuJPBMwGQK1O2GKBqHOq94bPVSF7j+4WzSpPan70ZZJX/reFsOFE/idfFN6wbizjR1Ne50Po03kudEmfQgoqUhVpd0wP8A3YbqE7ODdZcCPPwIDAQAB",
"manifest_version": 3,
"action": {
Expand Down

0 comments on commit c9b0868

Please sign in to comment.