Skip to content

Commit c4d494d

Browse files
committed
lint
1 parent a04a954 commit c4d494d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/wallet/bitte-wallet.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ export const ERROR_MESSAGES = {
4040
};
4141

4242
// Legacy support - use wallet registry instead
43-
export const SUPPORTED_NEAR_WALLETS: Array<WalletModuleFactory> = createWalletModules(DEFAULT_SUPPORTED_WALLETS);
43+
export const SUPPORTED_NEAR_WALLETS: Array<WalletModuleFactory> =
44+
createWalletModules(DEFAULT_SUPPORTED_WALLETS);
4445

4546
export type WalletSelectorComponents = {
4647
selector: WalletSelector;
@@ -173,7 +174,9 @@ export const BitteWalletAuth = {
173174
): Subscription => {
174175
BitteWalletAuth.validateWalletComponentsAreSetup();
175176

176-
return (BitteWalletAuth.walletSelectorComponents.selector!.store.observable as any)
177+
return (
178+
BitteWalletAuth.walletSelectorComponents.selector!.store.observable as any
179+
)
177180
.pipe(
178181
map((state: any) => state.accounts),
179182
distinctUntilChanged(),

0 commit comments

Comments
 (0)