File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
packages/react-router/lib Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " react-router " : patch
3
+ ---
4
+
5
+ [ internal] use concurrent mode state
Original file line number Diff line number Diff line change 121
121
"none" : " 12.0 kB"
122
122
},
123
123
"packages/react-router-dom/dist/umd/react-router-dom.production.min.js" : {
124
- "none" : " 17.9 kB"
124
+ "none" : " 18.0 kB"
125
125
}
126
126
}
127
127
}
Original file line number Diff line number Diff line change @@ -116,12 +116,12 @@ export function RouterProvider({
116
116
< DataRouterContext . Provider value = { dataRouterContext } >
117
117
< DataRouterStateContext . Provider value = { state } >
118
118
< Router
119
- basename = { router . basename }
120
- location = { router . state . location }
121
- navigationType = { router . state . historyAction }
119
+ basename = { basename }
120
+ location = { state . location }
121
+ navigationType = { state . historyAction }
122
122
navigator = { navigator }
123
123
>
124
- { router . state . initialized ? (
124
+ { state . initialized ? (
125
125
< DataRoutes routes = { router . routes } state = { state } />
126
126
) : (
127
127
fallbackElement
You can’t perform that action at this time.
0 commit comments