Skip to content

Commit f64ee22

Browse files
authored
Merge pull request #218 from techulus/main
Fix name update
2 parents 3c4f7a6 + c001c40 commit f64ee22

3 files changed

Lines changed: 5 additions & 11 deletions

File tree

bun.lock

Lines changed: 2 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"node-ical": "^0.20.1",
7171
"nodemailer": "^7.0.12",
7272
"nuqs": "^2.4.1",
73-
"postcss": "8.4.23",
73+
"postcss": "8.4.31",
7474
"postgres": "^3.4.7",
7575
"react": "19.2.3",
7676
"react-day-picker": "^8.10.1",

trpc/routers/user.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export const userRouter = createTRPCRouter({
1717
updateProfile: protectedProcedure
1818
.input(
1919
z.object({
20-
firstName: z.string().min(1),
21-
lastName: z.string().min(1),
20+
firstName: z.string(),
21+
lastName: z.string(),
2222
}),
2323
)
2424
.mutation(async ({ ctx, input }) => {

0 commit comments

Comments
 (0)