From 2c8c581c45b59f63964a9ab14cf44ca68eeb607e Mon Sep 17 00:00:00 2001 From: Vince Date: Fri, 12 Mar 2021 16:35:24 +1100 Subject: [PATCH] Fixed orderde lists --- components/RichBody.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/RichBody.tsx b/components/RichBody.tsx index be9337f..0527725 100644 --- a/components/RichBody.tsx +++ b/components/RichBody.tsx @@ -109,7 +109,7 @@ const options = { return (
    {children.map(item => ( -
  1. {item}
  2. + <>{item} ))}
);