diff --git a/explorer/src/pages/Schema/components/RecentAttestations/index.tsx b/explorer/src/pages/Schema/components/RecentAttestations/index.tsx index ff6d173d..be25f6cc 100644 --- a/explorer/src/pages/Schema/components/RecentAttestations/index.tsx +++ b/explorer/src/pages/Schema/components/RecentAttestations/index.tsx @@ -25,7 +25,7 @@ export const RecentAttestations: React.FC<{ schemaId: string }> = ({ schemaId }) const columnsSkeletonRef = useRef(columnsSkeleton(columns({ sortByDate: false }), attestationColumnsOption)); const data = isLoading ? { columns: columnsSkeletonRef.current, list: skeletonAttestations(5) } - : { columns: columns({ sortByDate: false }), list: attestations?.slice(-5).reverse() || [] }; + : { columns: columns({ sortByDate: false, sdk }), list: attestations?.slice(-5).reverse() || [] }; return (