From 1336862bce4d32a7989669ef80abd405c42ec093 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Sat, 12 Jan 2019 12:21:24 -0500 Subject: [PATCH] Removing unnecessary default value --- src/components/AppContext/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppContext/index.js b/src/components/AppContext/index.js index 7e0737d..6743015 100644 --- a/src/components/AppContext/index.js +++ b/src/components/AppContext/index.js @@ -19,7 +19,7 @@ const readURLHash = () => { // Assuming old-style URL return { syntax: 'js', - expr: query || '' + expr: query }; } };