Skip to content

Commit efe2b5c

Browse files
committed
fixup! format
1 parent 4a495da commit efe2b5c

File tree

3 files changed

+7
-42
lines changed

3 files changed

+7
-42
lines changed

examples/bugs/gh-119/app/layout.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,7 @@ export default function RootLayout({
2525
}>) {
2626
return (
2727
<html lang="en">
28-
<body
29-
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
30-
>
31-
{children}
32-
</body>
28+
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>{children}</body>
3329
</html>
3430
);
3531
}

examples/bugs/gh-119/app/page.tsx

Lines changed: 5 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,7 @@ export default function Home() {
44
return (
55
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
66
<main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
7-
<Image
8-
className="dark:invert"
9-
src="/next.svg"
10-
alt="Next.js logo"
11-
width={180}
12-
height={38}
13-
priority
14-
/>
7+
<Image className="dark:invert" src="/next.svg" alt="Next.js logo" width={180} height={38} priority />
158
<ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]">
169
<li className="mb-2">
1710
Get started by editing{" "}
@@ -30,13 +23,7 @@ export default function Home() {
3023
target="_blank"
3124
rel="noopener noreferrer"
3225
>
33-
<Image
34-
className="dark:invert"
35-
src="/vercel.svg"
36-
alt="Vercel logomark"
37-
width={20}
38-
height={20}
39-
/>
26+
<Image className="dark:invert" src="/vercel.svg" alt="Vercel logomark" width={20} height={20} />
4027
Deploy now
4128
</a>
4229
<a
@@ -56,13 +43,7 @@ export default function Home() {
5643
target="_blank"
5744
rel="noopener noreferrer"
5845
>
59-
<Image
60-
aria-hidden
61-
src="/file.svg"
62-
alt="File icon"
63-
width={16}
64-
height={16}
65-
/>
46+
<Image aria-hidden src="/file.svg" alt="File icon" width={16} height={16} />
6647
Learn
6748
</a>
6849
<a
@@ -71,13 +52,7 @@ export default function Home() {
7152
target="_blank"
7253
rel="noopener noreferrer"
7354
>
74-
<Image
75-
aria-hidden
76-
src="/window.svg"
77-
alt="Window icon"
78-
width={16}
79-
height={16}
80-
/>
55+
<Image aria-hidden src="/window.svg" alt="Window icon" width={16} height={16} />
8156
Examples
8257
</a>
8358
<a
@@ -86,13 +61,7 @@ export default function Home() {
8661
target="_blank"
8762
rel="noopener noreferrer"
8863
>
89-
<Image
90-
aria-hidden
91-
src="/globe.svg"
92-
alt="Globe icon"
93-
width={16}
94-
height={16}
95-
/>
64+
<Image aria-hidden src="/globe.svg" alt="Globe icon" width={16} height={16} />
9665
Go to nextjs.org →
9766
</a>
9867
</footer>

examples/bugs/gh-119/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"typescript": "^5",
3333
"wrangler": "catalog:"
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)