diff --git a/web/src/components/Transactions.tsx b/web/src/components/Transactions.tsx
index ccc4a32..771bc54 100644
--- a/web/src/components/Transactions.tsx
+++ b/web/src/components/Transactions.tsx
@@ -1,6 +1,7 @@
'use client'
import { FC, useEffect, useMemo, useState } from 'react'
+import { RiSendPlaneFill } from 'react-icons/ri'
import useIsMounted from '@/hooks/useIsMounted'
import Axios from '@/libs/axios'
@@ -11,16 +12,24 @@ import { shortenTime } from '@/utils/date'
const TxItem = ({ amountSat, description, createdAt, type }: Transaction) => {
const amountColor = type === TransactionType.PAYMENT_SENT ? 'text-gray-100' : 'text-green-500'
const displayAmount = type === TransactionType.PAYMENT_SENT ? `-${amountSat}` : `+${amountSat}`
- const displayDescription = description || (type === TransactionType.PAYMENT_SENT ? 'Sent' : 'Received')
+ // const displayDescription = description || (type === TransactionType.PAYMENT_SENT ? 'Sent' : 'Received')
+
+ const txIcon = useMemo(
+ () =>
+ type === TransactionType.PAYMENT_SENT ? (
+