We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b74214 commit 71099a5Copy full SHA for 71099a5
contributors.yml
@@ -1,6 +1,7 @@
1
- abhi-kr-2100
2
- Ajayff4
3
- alexlbr
4
+- andreiduca
5
- avipatel97
6
- awreese
7
- bavardage
docs/start/overview.md
@@ -66,9 +66,11 @@ createBrowserRouter(
66
<Route
67
path="dashboard"
68
element={<Dashboard />}
69
- loader={fetch("/api/dashboard.json", {
70
- signal: request.signal,
71
- })}
+ loader={({ request }) =>
+ fetch("/api/dashboard.json", {
+ signal: request.signal,
72
+ })
73
+ }
74
/>
75
<Route element={<AuthLayout />}>
76
0 commit comments