diff --git a/frontend/squeak-node-frontend/src/pages/wallet/Wallet.js b/frontend/squeak-node-frontend/src/pages/wallet/Wallet.js
index 0f2ac8e8..b8b6a3d5 100644
--- a/frontend/squeak-node-frontend/src/pages/wallet/Wallet.js
+++ b/frontend/squeak-node-frontend/src/pages/wallet/Wallet.js
@@ -181,21 +181,9 @@ export default function WalletPage() {
function TransactionsContent() {
return (
<>
-
- {transactions.map(transaction =>
-
- goToSqueakPage(transaction.getSqueakHash())}
- handleTransactionClick={() => console.log("clicked transaction")}
- transaction={transaction}>
-
-
- )}
-
+
+ {TransactionsGridItem()}
+
>
)
}
@@ -315,6 +303,40 @@ export default function WalletPage() {
)
}
+ function TransactionsGridItem() {
+ return (
+
+
+
+
+
+ {transactions.map(transaction =>
+
+ goToSqueakPage(transaction.getSqueakHash())}
+ handleTransactionClick={() => console.log("clicked transaction")}
+ transaction={transaction}>
+
+
+ )}
+
+
+
+
+
+
+ )
+ }
+
function ChannelsGridItem() {
return (