Skip to content

Commit

Permalink
style: lint whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
datasalaryman committed Jul 16, 2024
1 parent 2130044 commit 0144a4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const postRouter = createTRPCRouter({
const post = ctx.db.query.posts.findFirst({
orderBy: (posts, { desc }) => [desc(posts.createdAt)],
});

return post ?? null;
}),
});
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export const postRouter = createTRPCRouter({
orderBy: { createdAt: "desc" },
});

return post ?? null;
return post ?? null;
}),
});

0 comments on commit 0144a4a

Please sign in to comment.