From 531b7e1c4a3bd04c2abdb5201f6289198dc051d4 Mon Sep 17 00:00:00 2001 From: Chad Dougherty Date: Thu, 8 Sep 2022 12:00:44 -0400 Subject: [PATCH] fix: incorrect usage of `tbody` (#311) --- src/generate/__tests__/__snapshots__/index.js.snap | 4 ++-- src/generate/index.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/generate/__tests__/__snapshots__/index.js.snap b/src/generate/__tests__/__snapshots__/index.js.snap index cb402f9..15d4d74 100644 --- a/src/generate/__tests__/__snapshots__/index.js.snap +++ b/src/generate/__tests__/__snapshots__/index.js.snap @@ -17,7 +17,7 @@ These people contributed to the project: Divjot Singh is awesome! Jeroen Engels is awesome! - + @@ -51,7 +51,7 @@ These people contributed to the project: Kent C. Dodds is awesome! Kent C. Dodds is awesome! - + diff --git a/src/generate/index.js b/src/generate/index.js index 05fb9dd..9982829 100644 --- a/src/generate/index.js +++ b/src/generate/index.js @@ -58,7 +58,7 @@ function generateContributorsList(options, contributors) { _.map(formatLine), _.join('\n \n \n '), newContent => { - return `\n\n \n \n ${newContent}\n \n \n
\n\n` + return `\n\n \n \n ${newContent}\n \n \n
\n\n` }, )(contributors) }