Skip to content

Commit

Permalink
Update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 28, 2021
1 parent e923016 commit 93bb526
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 13 deletions.
43 changes: 34 additions & 9 deletions webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webapp/package.json
Expand Up @@ -15,7 +15,7 @@
"@types/yup": "^0.29.11",
"connected-react-router": "^6.9.1",
"formik": "^2.2.6",
"history": "^4.10.1",
"history": "^5.0.0",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
Expand Down
6 changes: 3 additions & 3 deletions webapp/src/index.tsx
Expand Up @@ -3,14 +3,14 @@ import ReactDOM from 'react-dom';
import App from './App';
import { Provider } from 'react-redux'
import * as serviceWorker from './serviceWorker';
import configureStore, { history } from './configureStore'
import { Router } from 'react-router-dom'
import configureStore from './configureStore'
import { BrowserRouter as Router } from 'react-router-dom'

const store = configureStore()

ReactDOM.render(
<Provider store={store}>
<Router history={history}>
<Router >
<App application={{ mode: "", workspaces: [], memberships: [], messages: [], subscriptions: [] }} />
</Router>
</Provider>
Expand Down

0 comments on commit 93bb526

Please sign in to comment.