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 Jul 21, 2023
1 parent cd0ecf5 commit 657c9d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/pages/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ npx create-remix@latest --template remix-run/examples/basic

Additionally, if your template is in a private GitHub repo, you can pass a GitHub token via the `--token` option:


```sh
npx create-remix@latest --template your-private/repo --token yourtoken
```
Expand Down Expand Up @@ -125,6 +124,7 @@ After the init script has been run, the `remix.init` folder gets deleted, so you
<docs-warning>Do note that consumers can opt out of running the remix.init script. To do so manually, they'll need to run `remix init`.</docs-warning>

[create-remix]: /other-api/create-remix

[remix-app-server]: [/other-api/serve]
[repo access token]: https://github.com/settings/tokens/new?description=Remix%20Private%20Stack%20Access&scopes=repo
[inquirer]: https://npm.im/inquirer
Expand Down
2 changes: 1 addition & 1 deletion templates/remix-javascript/app/root.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { cssBundleHref } from "@remix-run/css-bundle";
import {
Links,
LiveReload,
Expand All @@ -6,7 +7,6 @@ import {
Scripts,
ScrollRestoration,
} from "@remix-run/react";
import { cssBundleHref } from "@remix-run/css-bundle";

export const links = () => [
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
Expand Down

0 comments on commit 657c9d5

Please sign in to comment.