Skip to content

Commit

Permalink
fix: made portal and schema columns visible in schema's related attes…
Browse files Browse the repository at this point in the history
…tations (#483)

Co-authored-by: Taras Oliynyk <[email protected]>
  • Loading branch information
OliynykPro and tohapi authored Dec 20, 2023
1 parent c5f98e1 commit 63e988c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<div className="flex flex-col gap-6 w-full px-5 md:px-10">
Expand Down

0 comments on commit 63e988c

Please sign in to comment.