diff --git a/pages/Transactions.tsx b/pages/Transactions.tsx
index bf3a772..13784ec 100644
--- a/pages/Transactions.tsx
+++ b/pages/Transactions.tsx
@@ -165,7 +165,7 @@ export function Transactions() {
)}
/>
- ) : (
+ ) : !allTransactions ? (
{[...Array(20)].map((e, i) => (
))}
- )}
+ ) :
+
+ No transactions yet.
+
+ }
);
}