From b92b2fad1d172ed98eb757622f9232cbc3891631 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 30 Aug 2023 23:17:26 -0700 Subject: [PATCH] Fix looping over developer notes --- components/about/UpdatesPage/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/about/UpdatesPage/index.tsx b/components/about/UpdatesPage/index.tsx index 143026d1..9fbd1e75 100644 --- a/components/about/UpdatesPage/index.tsx +++ b/components/about/UpdatesPage/index.tsx @@ -110,8 +110,8 @@ const UpdatesPage = () => {

Developer notes

{updates('versions.1.2.0.notes') .split('\n') - .map((item) => ( -

{item}

+ .map((item, i) => ( +

{item}

))}