diff options
author | Vitaly Takmazov | 2018-11-11 02:26:40 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 8728f92f757e2a37a60d13546426579ab95430dd (patch) | |
tree | b751f243659761ef811e55ca5222750874452119 /vnext/src/App.js | |
parent | e22f69d145a6c805b843bae76236b65b30ac5ef9 (diff) |
query-string -> qs
Firefox 48 support
Diffstat (limited to 'vnext/src/App.js')
-rw-r--r-- | vnext/src/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 5b343c0a..9c6e3a54 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -1,6 +1,6 @@ import React from 'react'; import { BrowserRouter as Router, Route, Link, Switch } from 'react-router-dom'; -import * as qs from 'query-string'; +import * as qs from 'qs'; import Icon from './components/Icon'; import { Discover, Discussions, Blog, Tag, Home } from './components/Feeds'; |