Skip to content

Commit 0c12953

Browse files
committed
updated
1 parent e794a00 commit 0c12953

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/server/app.router.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ import {
1515
} from "./note.schema";
1616

1717
const t = initTRPC.create({
18-
transformer: superjson
18+
transformer: superjson,
1919
});
2020

2121
export const appRouter = t.router({
2222
getHello: t.procedure.query((req) => {
23-
return { message: "Welcome to Full-Stack tRPC CRUD App" };
23+
return { message: "Welcome to Full-Stack tRPC CRUD App with Next.js" };
2424
}),
2525
createNote: t.procedure
2626
.input(createNoteSchema)

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ module.exports = {
3030
},
3131
},
3232
plugins: [],
33-
};;
33+
}

0 commit comments

Comments
 (0)