Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Aug 28, 2024
1 parent 92bd589 commit 34529a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/wallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ import * as walletHandlers from './handlers/wallet.handlers';
import type {IcrcAnyRequestedScopes} from './types/icrc-requests';
import {
IcrcAccountsResponseSchema,
IcrcCallCanisterResult,
IcrcCallCanisterResultResponseSchema,
IcrcScopesResponseSchema,
IcrcSupportedStandardsResponseSchema
IcrcSupportedStandardsResponseSchema,
type IcrcCallCanisterResult
} from './types/icrc-responses';
import {JSON_RPC_VERSION_2, RpcResponseWithResultOrErrorSchema} from './types/rpc';
import {WalletResponseError} from './types/wallet-errors';
import type {WalletOptions} from './types/wallet-options';
import {WalletCallParams} from './types/wallet-request';
import type {WalletCallParams} from './types/wallet-request';
import {WALLET_WINDOW_CENTER, WALLET_WINDOW_TOP_RIGHT, windowFeatures} from './utils/window.utils';
import {Wallet} from './wallet';

Expand Down Expand Up @@ -1075,9 +1075,9 @@ describe('Wallet', () => {
describe('Call', () => {
let wallet: Wallet;

type MyTest = {
interface MyTest {
hello: string;
};
}

const params: WalletCallParams<MyTest> = {
canisterId: mockPrincipalText,
Expand Down

0 comments on commit 34529a4

Please sign in to comment.