Skip to content

Commit

Permalink
chore: house keeping
Browse files Browse the repository at this point in the history
  • Loading branch information
DawidWraga committed Apr 1, 2024
1 parent ce305c9 commit df1bbd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .hintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"development"
],
"hints": {
"typescript-config/consistent-casing": "off"
"typescript-config/consistent-casing": "off",
"typescript-config/strict": "off"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { z } from "zod";

import { authedService, publicService } from "@/lib/service";

export const getTodos = publicService.query(async ({ ctx }) => {
export const getTodos = authedService.query(async ({ ctx }) => {
return ctx.db.todo.findMany({
where: {
createdBy: { id: ctx.user?.id },
Expand Down

0 comments on commit df1bbd3

Please sign in to comment.