From 8219bd2f64aabad4d04a7d1b560db01c6831a76f Mon Sep 17 00:00:00 2001 From: Jaume Alavedra Date: Thu, 28 Nov 2024 11:50:30 +0100 Subject: [PATCH] chore: apply linter; --- sdk/src/evm/registerSession.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/src/evm/registerSession.ts b/sdk/src/evm/registerSession.ts index d6f80a8..ac05a3c 100644 --- a/sdk/src/evm/registerSession.ts +++ b/sdk/src/evm/registerSession.ts @@ -1,8 +1,8 @@ import { BackendApiClients } from '@openfort/openapi-clients'; -import { Account } from 'configuration/account'; import { Authentication } from 'configuration/authentication'; import { OneOf } from 'utils/helpers'; import { CreateSessionRequest } from '@openfort/openapi-clients/dist/backend'; +import { Account } from 'configuration/account'; import { JsonRpcError, RpcErrorCode } from './JsonRpcError'; import { Signer as OpenfortSigner } from '../signer/isigner'; import { GrantPermissionsReturnType, SessionResponse } from '../types'; @@ -61,7 +61,7 @@ export type GrantPermissionsParameters = { } | { /** Account to assign the permissions to. */ - account?: `0x${string}` | Account | undefined; + account?: `0x${string}` | undefined; } >;