diff --git a/README.md b/README.md index bbf3cc4d..d886ce5f 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ - chore: fix ci again ([2854a26](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/2854a26)) - chore: fix ci and add security policy ([07dcc94](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/07dcc94)) - chore: fix icon colors ([cefcc45](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/cefcc45)) +- chore: fix paddings ([b07a529](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/b07a529)) - chore: fix routing bugs and finish registration form ([d789c7b](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/d789c7b)) - chore: fix subgraph ([68606c9](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/68606c9)) - chore: fix subgraph memory access ([ba9cc9e](https://github.com/Proof-Of-Humanity/proof-of-humanity-web/commit/ba9cc9e)) diff --git a/_pages/profile/[id]/submission-details-accordion.js b/_pages/profile/[id]/submission-details-accordion.js index 5b3df7c1..9b748857 100644 --- a/_pages/profile/[id]/submission-details-accordion.js +++ b/_pages/profile/[id]/submission-details-accordion.js @@ -48,11 +48,11 @@ const submissionDetailsAccordionFragments = { } `, }; -function SubmissionDetailsAccordionItem({ heading, panel }) { +function SubmissionDetailsAccordionItem({ heading, panelSx, panel }) { return ( {heading} - {panel} + {panel} ); } @@ -86,6 +86,7 @@ export default function SubmissionDetailsAccordion({ submission, contract }) { - #{index} submitted by{" "} + + #{index} + {" "} + submitted by{" "} {sender} @@ -74,7 +77,7 @@ export default function Evidence({ return ( {({ scroll }) => ( - <> + {evidence.map((_evidence, index) => ( @@ -120,7 +127,7 @@ export default function Evidence({ Scroll to Last Evidence - + )} );