Skip to content

Commit 19b1157

Browse files
committed
fix: prettier error
1 parent e36ce2c commit 19b1157

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
{
2-
"recommendations": [
3-
"arcanis.vscode-zipfs",
4-
"dbaeumer.vscode-eslint",
5-
"esbenp.prettier-vscode"
6-
]
2+
"recommendations": ["arcanis.vscode-zipfs", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
73
}

app/(client)/example/query-string/page.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
export default async function QueryStringPage(
2-
props: {
3-
searchParams?: Promise<{ [key: string]: string | string[] | undefined }>;
4-
}
5-
) {
1+
export default async function QueryStringPage(props: {
2+
searchParams?: Promise<{ [key: string]: string | string[] | undefined }>;
3+
}) {
64
const searchParams = await props.searchParams;
75
return (
86
<main className="flex min-h-screen flex-col items-center p-8">

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const nextConfig = {
99
},
1010
experimental: {
1111
reactCompiler: true,
12-
}
12+
},
1313
};
1414

1515
module.exports = nextConfig;

tsconfig.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
"@libs/*": ["src/libs/*"],
3939
"@stores/*": ["src/stores/*"],
4040
"@styles/*": ["src/styles/*"],
41-
"@components/*": ["src/components/*"],
41+
"@components/*": ["src/components/*"]
4242
},
4343
"plugins": [
4444
{
45-
"name": "next",
46-
},
47-
],
45+
"name": "next"
46+
}
47+
]
4848
},
4949
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
50-
"exclude": ["./out/**/*", "./node_modules/**/*"],
50+
"exclude": ["./out/**/*", "./node_modules/**/*"]
5151
}

0 commit comments

Comments
 (0)