Skip to content

Commit a86b52d

Browse files
piehactions-user
authored andcommitted
chore: format with prettier
1 parent d3b0a20 commit a86b52d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
export const revalidate = 3600 // arbitrarily long, just so that it doesn't happen during a test run
22

3-
43
export default async function Page() {
54
const data = {
65
timestamp: Date.now(),
76
}
87
console.log('/timestamp/key/[key] rendered', data)
98

10-
return (
11-
<div id="page-info">{JSON.stringify(data)}</div>
12-
)
9+
return <div id="page-info">{JSON.stringify(data)}</div>
1310
}

tests/fixtures/simple/next.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const nextConfig = {
88
outputFileTracingIncludes: {
99
'/': ['public/**'],
1010
},
11-
after: true
11+
after: true,
1212
},
1313
images: {
1414
remotePatterns: [

0 commit comments

Comments
 (0)