Skip to content

Commit

Permalink
fix(wallet-dashboard): build
Browse files Browse the repository at this point in the history
  • Loading branch information
cpl121 committed Nov 20, 2024
1 parent ec1f344 commit 2104062
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/wallet-dashboard/components/coins/MyCoins.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import React, { useState } from 'react';
import { useCurrentAccount, useIotaClientQuery } from '@iota/dapp-kit';
import { CoinItem } from '@/components';
import { CoinItem, SendTokenDialog } from '@/components';
import { CoinBalance } from '@iota/iota-sdk/client';
import {
COINS_QUERY_REFETCH_INTERVAL,
Expand All @@ -19,7 +19,6 @@ import {
Title,
} from '@iota/apps-ui-kit';
import { RecognizedBadge } from '@iota/ui-icons';
import SendCoinDialog from '../Dialogs/SendToken/SendTokenDialog';

enum TokenCategory {
All = 'All',
Expand Down Expand Up @@ -130,7 +129,7 @@ function MyCoins(): React.JSX.Element {
</div>
</div>
{selectedCoin && activeAccountAddress && (
<SendCoinDialog
<SendTokenDialog
activeAddress={activeAccountAddress}
coin={selectedCoin}
open={isSendTokenDialogOpen}
Expand Down

0 comments on commit 2104062

Please sign in to comment.