Skip to content

Commit

Permalink
chore: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
qin-guan committed Jul 16, 2023
1 parent a939d97 commit b1d4fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/trpc/routers/me/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const meRouter = router({
.meta({ participants: true })
.query(async ({ ctx }) => {
if (await userStorage.hasItem(ctx.session.user.id)) {
console.log('cached')
console.log('cached', baseStorage.getMounts())

Check failure on line 14 in server/trpc/routers/me/index.ts

View workflow job for this annotation

GitHub Actions / ci

Unexpected console statement
return await userStorage.getItem<User>(ctx.session.user.id)
}

Expand Down

0 comments on commit b1d4fb9

Please sign in to comment.