We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5849fdf commit 325b0feCopy full SHA for 325b0fe
2 files changed
package.json
@@ -7,7 +7,7 @@
7
"module": "src/index.ts",
8
"scripts": {
9
"dev": "bun run --hot src/index.ts",
10
- "fc": "bunx prettier --write . && bunx eslint --fix . && bunx prettier --check . && pnpm eslint .",
+ "fc": "bunx prettier --write . && bunx eslint --fix . && bunx prettier --check . && bunx eslint .",
11
"mig": "rm -rf prisma/migrations && bunx prisma generate && bunx prisma migrate dev --name init"
12
},
13
"dependencies": {
src/service/contact-service.ts
@@ -18,7 +18,7 @@ export class ContactService {
18
): Promise<ContactResponse> {
19
request = ContactValidation.CREATE.parse(request);
20
21
- let data = {
+ const data = {
22
...request,
23
...{ username: user.username },
24
};
0 commit comments