Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit 878a54d

Browse files
committed
lint fix
1 parent e9e32cf commit 878a54d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

template/app/root.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { MetaFunction } from "remix"
12
import {
23
Links,
34
LiveReload,
@@ -6,7 +7,6 @@ import {
67
Scripts,
78
ScrollRestoration,
89
} from "remix"
9-
import type { MetaFunction } from "remix"
1010

1111
export const meta: MetaFunction = () => {
1212
return { title: "New Remix App" }
@@ -16,7 +16,7 @@ export default function App() {
1616
return (
1717
<html lang="en">
1818
<head>
19-
<meta charSet="utf-8" />
19+
<meta charSet="utf8" />
2020
<meta name="viewport" content="width=device-width,initial-scale=1" />
2121
<Meta />
2222
<Links />

tests/fixtures/test-app/app/root.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { MetaFunction } from "remix"
12
import {
23
Links,
34
LiveReload,
@@ -6,7 +7,6 @@ import {
67
Scripts,
78
ScrollRestoration,
89
} from "remix"
9-
import type { MetaFunction } from "remix"
1010

1111
export const meta: MetaFunction = () => {
1212
return { title: "New Remix App" }
@@ -16,7 +16,7 @@ export default function App() {
1616
return (
1717
<html lang="en">
1818
<head>
19-
<meta charSet="utf-8" />
19+
<meta charSet="utf8" />
2020
<meta name="viewport" content="width=device-width,initial-scale=1" />
2121
<Meta />
2222
<Links />

0 commit comments

Comments
 (0)