Skip to content

Commit 4aa766b

Browse files
fix(packages/auth0): actions and forms
1 parent c415b5d commit 4aa766b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

packages/auth0/src/actions/authorize-app.action.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ exports.onExecutePostLogin = async (event, api) => {
3030
name: event.request.query.name,
3131
receiverId: transaction.receiverId,
3232
signerId: transaction.signerId,
33-
publicKey: transaction.publicKey.toString(),
3433
actions: JSON.stringify(
3534
transaction.actions,
3635
(_, value) => {

packages/auth0/src/forms/authorize-app/transaction-details/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,14 @@ function AuthorizeAppTransactionDetails(context) {
5252
box.classList.add("box");
5353

5454
const config = context.custom.getParams();
55-
const { signerId, publicKey, receiverId, actions } = config;
55+
const { signerId, receiverId, actions } = config;
5656

5757
const sender = createTextContent("Signer ID", signerId);
5858
const receiver = createTextContent("Receiver ID", receiverId);
59-
const publicKeyContent = createTextContent("Public Key", publicKey);
6059
const actionsContent = createJsonContent("Actions", actions);
6160

6261
box.appendChild(sender);
6362
box.appendChild(receiver);
64-
box.appendChild(publicKeyContent);
6563
box.appendChild(actionsContent);
6664
return box;
6765
},

0 commit comments

Comments
 (0)