From 209bc1cbb9698e93330ae7e44e198788849b9c70 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Fri, 10 Jan 2020 10:12:12 -0500 Subject: [PATCH] fixes #195 --- src/components/Person.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/Person.js b/src/components/Person.js index 0bb62508..6d74a432 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -18,9 +18,15 @@ export default function Person({ person, currentTag }) { {person.name} {person.emoji} - {`${ - url.host - }${url.pathname.slice(0, url.pathname.lastIndexOf('/'))}`} + {`${url.host}${url.pathname.slice( + 0, + url.pathname.lastIndexOf('/') + )}`}

{person.description}