diff --git a/explorer/src/components/account/TokenHistoryCard.tsx b/explorer/src/components/account/TokenHistoryCard.tsx
index 824e3b6421..2fe9ba140e 100644
--- a/explorer/src/components/account/TokenHistoryCard.tsx
+++ b/explorer/src/components/account/TokenHistoryCard.tsx
@@ -37,6 +37,12 @@ export function TokenHistoryCard({ pubkey }: { pubkey: PublicKey }) {
const tokens = ownedTokens.data?.tokens;
if (tokens === undefined || tokens.length === 0) return null;
+ if (tokens.length > 25) {
+ return (
+
+ );
+ }
+
return ;
}