diff --git a/src/app/program/accepted-papers/page.js b/src/app/program/accepted-papers/page.js index f18f8a9..22e224d 100644 --- a/src/app/program/accepted-papers/page.js +++ b/src/app/program/accepted-papers/page.js @@ -14,9 +14,11 @@ function AcceptedPaper({ title, authors }) { {title}
{authors.map((author, idx) => { - return idx < authors.length - 1 - ? `${author}, ` - : `${author}`; + return idx < authors.length - 1 ? ( + {`${author}, `} + ) : ( + {`${author}`} + ); })}

@@ -30,8 +32,9 @@ export default function AcceptedPapers() {

{`We are pleased to share the titles and authors of accepted technical papers (in alphabetical order). More information regarding the program will be made available in September.`}

- {ACCEPTED_PAPERS.map((paper) => ( + {ACCEPTED_PAPERS.map((paper, idx) => (