Skip to content

Commit

Permalink
fix docs type, modify test app
Browse files Browse the repository at this point in the history
  • Loading branch information
iway1 committed Dec 9, 2022
1 parent 48b0987 commit 38b5db1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/docs/docs/data-transformers.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ app.use("/panel", (_, res) => {
});
```

No other data transformers are available at the moment, but feel free to [open an issue](https://github.com/iway/trpc-panel/issues) and / or submit a PR.
No other data transformers are available at the moment, but feel free to [open an issue](https://github.com/iway1/trpc-panel/issues) and / or submit a PR.
2 changes: 1 addition & 1 deletion packages/test-app/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const userRouter = t.router({
return fakeData.user;
}),
updateUser: t.procedure.input(UserSchema).mutation(({ input }) => {
fakeData.user = input;
return input;
}),
deleteUser: t.procedure.input(IDSchema).mutation(() => {
return {
Expand Down

0 comments on commit 38b5db1

Please sign in to comment.