Skip to content

Commit a902b36

Browse files
committed
lint
1 parent 90b0b14 commit a902b36

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

src/wallet/bitte-wallet.ts

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import {
33
VerifiedOwner,
44
VerifyOwnerParams,
55
Wallet,
6-
} from '@near-wallet-selector/core';
6+
} from "@near-wallet-selector/core";
77
import { setupIntearWallet } from "@near-wallet-selector/intear-wallet";
8-
import { setupModal } from '@near-wallet-selector/modal-ui';
9-
import { distinctUntilChanged, map, Subscription } from 'rxjs';
8+
import { setupModal } from "@near-wallet-selector/modal-ui";
9+
import { distinctUntilChanged, map, Subscription } from "rxjs";
1010

1111
import {
1212
WALLET_CONNECTION_POLL_INTERVAL,
@@ -20,7 +20,7 @@ import type {
2020
} from "@near-wallet-selector/core";
2121
import type { WalletSelectorModal } from "@near-wallet-selector/modal-ui";
2222

23-
import { setupMeteorWallet } from '@near-wallet-selector/meteor-wallet';
23+
import { setupMeteorWallet } from "@near-wallet-selector/meteor-wallet";
2424

2525
const SUPPORT =
2626
"- further help available on our telegram channel: https://t.me/mintdev";
@@ -64,21 +64,20 @@ export const BitteWalletAuth = {
6464
walletUrl?: string,
6565
): Promise<WalletSelectorComponents> => {
6666
if (onlyBitteWallet === false) {
67-
BitteWalletAuth.walletSelectorComponents.selector = await setupWalletSelector({
68-
network: network || 'mainnet',
69-
modules: [
70-
...(options?.additionalWallets || []),
71-
...SUPPORTED_NEAR_WALLETS,
72-
],
73-
});
67+
BitteWalletAuth.walletSelectorComponents.selector =
68+
await setupWalletSelector({
69+
network: network || "mainnet",
70+
modules: [
71+
...(options?.additionalWallets || []),
72+
...SUPPORTED_NEAR_WALLETS,
73+
],
74+
});
7475
} else {
75-
BitteWalletAuth.walletSelectorComponents.selector = await setupWalletSelector({
76-
77-
network: network || 'mainnet',
78-
modules: [
79-
...SUPPORTED_NEAR_WALLETS,
80-
],
81-
});
76+
BitteWalletAuth.walletSelectorComponents.selector =
77+
await setupWalletSelector({
78+
network: network || "mainnet",
79+
modules: [...SUPPORTED_NEAR_WALLETS],
80+
});
8281
}
8382

8483
BitteWalletAuth.walletSelectorComponents.modal = setupModal(

0 commit comments

Comments
 (0)