From 77f78ee87e9efa3c512a97f819ca18d30271fa02 Mon Sep 17 00:00:00 2001 From: Quentin Burg Date: Mon, 11 Sep 2023 09:44:21 +0200 Subject: [PATCH] :construction: try to fix CI --- batcher-ui/src/contexts/wallet.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/batcher-ui/src/contexts/wallet.tsx b/batcher-ui/src/contexts/wallet.tsx index 0152c3a8..c752236e 100644 --- a/batcher-ui/src/contexts/wallet.tsx +++ b/batcher-ui/src/contexts/wallet.tsx @@ -1,9 +1,10 @@ import { TezosToolkit } from '@taquito/taquito'; import React, { createContext, useEffect, useReducer } from 'react'; import { BeaconWallet } from '@taquito/beacon-wallet'; -import { AccountInfo, NetworkType } from '@airgap/beacon-sdk'; +import { AccountInfo } from '@airgap/beacon-sdk'; import { useTezosToolkit } from './tezos-toolkit'; import { getByKey, setByKey } from 'src/utils/local-storage'; +import { NetworkType } from '@airgap/beacon-types'; type WalletState = { wallet: BeaconWallet | undefined;