Skip to content

Commit

Permalink
better order
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipHarald committed Sep 4, 2023
1 parent b9bb866 commit eec65c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/pages/example-zk/SignedStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const SignedStats: NextPage = () => {

return (
<div className="stats stats-vertical sm:stats-horizontal shadow mb-8">
{proof && proof.length > 2 && <Stat title="Proof of valid age ✅" stat={proof} />}
{signedBirthYear && <Stat title="Signed birth year 📜" stat={signedBirthYear} />}
{signerPublicKey && <Stat title="Signers public key 🏛" stat={signerPublicKey} />}
{signedBirthYear && <Stat title="Signed birth year 📜" stat={signedBirthYear} />}
{proof && proof.length > 2 && <Stat title="Proof of valid age ✅" stat={proof} />}
</div>
);
};
Expand Down

0 comments on commit eec65c3

Please sign in to comment.