diff --git a/packages/app/src/components/ActiveStreamCard.tsx b/packages/app/src/components/ActiveStreamCard.tsx index af5f9b4c..542de7c1 100644 --- a/packages/app/src/components/ActiveStreamCard.tsx +++ b/packages/app/src/components/ActiveStreamCard.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { VStack, HStack, Text, Button } from 'native-base'; +import { VStack, HStack, Text } from 'native-base'; import { styles } from './WalletCards/styles'; import { StopDonationActionButton } from './StopDonationActionButton'; import { DonorCollective } from '../models/models'; diff --git a/packages/app/src/components/WalletCards/WalletDonatedCard.tsx b/packages/app/src/components/WalletCards/WalletDonatedCard.tsx index 69ff2dcb..3d3af427 100644 --- a/packages/app/src/components/WalletCards/WalletDonatedCard.tsx +++ b/packages/app/src/components/WalletCards/WalletDonatedCard.tsx @@ -29,7 +29,7 @@ export const WalletDonatedCard: React.FC = ({ donorColle amount={donationsFormatted || '0'} /> - = {donationsUsdValue} USD + = {donationsUsdValue || 0} USD ); };