From f84f9fd1ef0a74c3fcb44d112b6c5c26f520df47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Wed, 26 Oct 2016 17:19:20 +0200 Subject: [PATCH] Remove double space in warning message --- src/utils/warning.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/warning.js b/src/utils/warning.js index db0f7bcd1..6c4c5bf7d 100644 --- a/src/utils/warning.js +++ b/src/utils/warning.js @@ -15,7 +15,7 @@ export default function warning(message) { } if (typeof console !== 'undefined') { - console.error('Warning: ', message) // eslint-disable-line no-console + console.error(`Warning: ${message}`) // eslint-disable-line no-console } try {