diff --git a/app/soapbox/features/crypto_donate/components/crypto_address.tsx b/app/soapbox/features/crypto_donate/components/crypto_address.tsx index 1ecccf083..04a6e6388 100644 --- a/app/soapbox/features/crypto_donate/components/crypto_address.tsx +++ b/app/soapbox/features/crypto_donate/components/crypto_address.tsx @@ -2,8 +2,8 @@ import React from 'react'; import { useDispatch } from 'react-redux'; import { openModal } from 'soapbox/actions/modals'; +import CopyableInput from 'soapbox/components/copyable-input'; import { Text, Icon, Stack, HStack } from 'soapbox/components/ui'; -import { CopyableInput } from 'soapbox/features/forms'; import { getExplorerUrl } from '../utils/block_explorer'; import { getTitle } from '../utils/coin_db'; @@ -57,9 +57,7 @@ const CryptoAddress: React.FC = (props): JSX.Element => { {note} )} -
- -
+ ); };