From 60f551c6a9c9725c76783435a92c488245ab2cb6 Mon Sep 17 00:00:00 2001 From: fernandomg Date: Mon, 7 Jun 2021 16:10:20 -0300 Subject: [PATCH] fix after rebase --- .../screens/ContractInteraction/SendCustomTx/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/SendCustomTx/index.tsx b/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/SendCustomTx/index.tsx index e3546bfa..ff51cca4 100644 --- a/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/SendCustomTx/index.tsx +++ b/src/routes/safe/components/Balances/SendModal/screens/ContractInteraction/SendCustomTx/index.tsx @@ -30,7 +30,7 @@ import { sameString } from 'src/utils/strings' import { styles } from './style' import { getExplorerInfo, getNetworkInfo } from 'src/config' -import { addressBookSelector } from 'src/logic/addressBook/store/selectors' +import { addressBookState } from 'src/logic/addressBook/store/selectors' import { sameAddress } from 'src/logic/wallets/ethAddresses' export interface CreatedTx { @@ -66,7 +66,7 @@ const SendCustomTx = ({ }: Props): ReactElement => { const classes = useStyles() const ethBalance = useSelector(currentSafeEthBalance) - const addressBook = useSelector(addressBookSelector) + const addressBook = useSelector(addressBookState) const [qrModalOpen, setQrModalOpen] = useState(false) const [selectedEntry, setSelectedEntry] = useState<{ address?: string; name: string } | null>(() => { const defaultEntry = {