From ec178fd365cd363c9f2219e0e734228cab101873 Mon Sep 17 00:00:00 2001 From: Nick Van Doorn Date: Wed, 17 Apr 2019 12:35:09 -0700 Subject: Hack around weird bug --- src/lib/url.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/url.js b/src/lib/url.js index 83a8d12..7e294cf 100644 --- a/src/lib/url.js +++ b/src/lib/url.js @@ -1,7 +1,7 @@ -import { window } from 'browser-monads' +// import { window } from 'browser-monads' -export const parseQuery = () => - window.location.search && parseQueryString(window.location.search) +export const parseQuery = () => '' +// window.location.search && parseQueryString(window.location.search) export const parseQueryString = query => query @@ -22,5 +22,5 @@ export const objectToQuery = query => ) export const writeQuery = queryObj => { - window.history.pushState({}, '', objectToQuery(queryObj)) + // window.history.pushState({}, '', objectToQuery(queryObj)) } -- cgit v1.2.3