Skip to content

Commit

Permalink
Linter fixes for b2f5395
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou committed Jan 13, 2025
1 parent 14f7529 commit 8e8b02b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/modals/TransactionModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ import { useBtcTransactionsStore, Transaction as BtcTransaction } from '../../st
import { useUsdcTransactionsStore, Transaction as UsdcTransaction } from '../../stores/UsdcTransactions';
import { useUsdtTransactionsStore, Transaction as UsdtTransaction } from '../../stores/UsdtTransactions';
import { sendTransaction } from '../../network';
import { useAccountStore, AccountType } from '../../stores/Account';
import { useAccountStore } from '../../stores/Account';
import { explorerTxLink } from '../../lib/ExplorerUtils';
import { assetToCurrency } from '../../lib/swap/utils/Assets';
import InteractiveShortAddress from '../InteractiveShortAddress.vue';
Expand Down Expand Up @@ -639,7 +639,7 @@ export default defineComponent({
// consider proxy "expired" after 15 blocks
&& transaction.value.blockHeight! <= blockHeight.value - 15
)
)
),
);
const blockExplorerLink = computed(() =>
Expand Down

0 comments on commit 8e8b02b

Please sign in to comment.