From 68e0834ca5954feed66535c595d4b8da221c0fda Mon Sep 17 00:00:00 2001 From: Daniel Rocha <68558152+danroc@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:25:55 +0200 Subject: [PATCH] chore: update `KeyringResponse` comment --- src/api.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api.ts b/src/api.ts index 1da29caa0..e920eb0eb 100644 --- a/src/api.ts +++ b/src/api.ts @@ -163,10 +163,10 @@ export const KeyringResponseStruct = union([ * request will be handled asynchronously. Otherwise, the response must contain * the result of the request and `pending: false`. * - * In the asynchronous case, the keyring can return a redirect URL to be shown - * to the user. The user can choose to follow the link or cancel the request. - * The main use case for this is to redirect the user to a third-party service - * to approve the request. + * In the asynchronous case, the keyring can return a redirect URL and message + * to be shown to the user. The user can choose to follow the link or cancel + * the request. The main use case for this is to redirect the user to the snap + * dapp to review the request. */ export type KeyringResponse = Infer;