Skip to content

Commit

Permalink
Fixed cleanup bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincharles committed Mar 21, 2023
1 parent 1f092b2 commit ee6dcd9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
11 changes: 7 additions & 4 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"react-table": "^7.7.0",
"react-use-measure": "^2.1.1",
"react-visibility-sensor-v2": "^1.0.0",
"recoil": "^0.7.4",
"recoil": "^0.7.7",
"socket.io": "^4.5.0",
"socket.io-client": "^4.5.0",
"styled-components": "5.3.3",
Expand Down
4 changes: 2 additions & 2 deletions src/Tools/singlepage/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const router = createBrowserRouter([
{
path: "/",
loader: siteLoader,
element: <SiteHeader />,
element: <RecoilRoot><SiteHeader /></RecoilRoot>,
children: [
{
path: "/",
Expand Down Expand Up @@ -58,7 +58,7 @@ const router = createBrowserRouter([
path: "/portfolio/:doenetId/settings",
loader: portfolioActivitySettingsLoader,
action: portfolioActivitySettingsAction,
element: <PortfolioActivitySettings />,
element: <RecoilRoot><PortfolioActivitySettings /></RecoilRoot>,
},
{
path: "*",
Expand Down

0 comments on commit ee6dcd9

Please sign in to comment.