From 2e230ac3e05a5d53bce4dc4725aa9a95dc950ad7 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Tue, 17 Sep 2019 07:36:24 -0700 Subject: [PATCH] Remove console.log --- modern/src/utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/modern/src/utils.ts b/modern/src/utils.ts index 39ea91ad..60cf5f22 100644 --- a/modern/src/utils.ts +++ b/modern/src/utils.ts @@ -356,7 +356,6 @@ async function loadImage( // TODO: Offer some way to clean this up export async function loadFont(fontUrl: string, name: string) { // Note: Incompatible with non-chromium Edge (#901) - console.log({ fontFamily: name }); const font = new FontFace(name, `url(${fontUrl})`); const loadedFont = await font.load(); document.fonts.add(loadedFont);