Skip to content

Commit e099d69

Browse files
authored
docs: fix import order (#13328)
1 parent 252d928 commit e099d69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/start/data/custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ createBrowserRouter([
6666
path: "/show/:showId",
6767
lazy: () => {
6868
let [loader, action, Component] = await Promise.all([
69-
import("./show.action.js"),
7069
import("./show.loader.js"),
70+
import("./show.action.js"),
7171
import("./show.component.js"),
7272
]);
7373
return { loader, action, Component };

0 commit comments

Comments
 (0)