From 2ecc7106d7fc222ca84777fc279e9f46f80afd5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nzws=E2=9C=A8?= Date: Wed, 18 Sep 2019 22:41:50 +0900 Subject: [PATCH] [Glitch] Fix eslint error of import/no-extraneous-dependencies Port d0c2c5278391b82ba7fa2f230bf237805ff61a0c to glitch-soc Signed-off-by: Thibaut Girka --- app/javascript/flavours/glitch/packs/public.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/flavours/glitch/packs/public.js b/app/javascript/flavours/glitch/packs/public.js index 72725d20b..019de2167 100644 --- a/app/javascript/flavours/glitch/packs/public.js +++ b/app/javascript/flavours/glitch/packs/public.js @@ -11,10 +11,10 @@ function main() { const React = require('react'); const ReactDOM = require('react-dom'); const Rellax = require('rellax'); - const createHistory = require('history').createBrowserHistory; + const { createBrowserHistory } = require('history'); const scrollToDetailedStatus = () => { - const history = createHistory(); + const history = createBrowserHistory(); const detailedStatuses = document.querySelectorAll('.public-layout .detailed-status'); const location = history.location;