From d1eb8b11d6b3276435c9cf52fc77654e19631b48 Mon Sep 17 00:00:00 2001 From: David O'Trakoun Date: Sun, 12 Jan 2020 00:00:32 -0500 Subject: [PATCH] Request 50px avatar from clearbit --- src/components/Person.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Person.js b/src/components/Person.js index 90b4dc4e..6e53064e 100644 --- a/src/components/Person.js +++ b/src/components/Person.js @@ -7,7 +7,7 @@ import * as icons from '../util/icons'; export default function Person({ person, currentTag }) { const url = new URL(person.url); - const img = `https://logo.clearbit.com/${url.host}`; + const img = `https://logo.clearbit.com/${url.host}?size=50`; return (