Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed May 17, 2024
1 parent ddda0f0 commit 7759e8e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/routers/create-browser-router.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,12 @@ let router = createBrowserRouter(routes, {
console.log(`Processing route ${match.route.id}`);
// Don't override anything - just resolve route.lazy + call loader
let result = await match.resolve();
console.log(`Done processing route ${match.route.id}`);
console.log(
`Done processing route ${match.route.id}`
);
return result;
})
)
);
},
});
```
Expand Down

0 comments on commit 7759e8e

Please sign in to comment.