Skip to content

Commit

Permalink
build: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedBassem committed Feb 20, 2024
1 parent f5afec5 commit c3a03aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ I'm a systems engineer in my day job (and have been for the past 7 years). I did
- An easy way to get redis running is by using docker `docker run -p 5379:5379 redis`.
- You can run the web app without the workers, but link fetching and automatic tagging won't work.


### Codebase structure

- `packages/db`: Where prisma's schema lives. Shared between packages.
- `packages/shared`: Shared utilities and code between the workers and the web app.
- `packages/web`: Where the nextjs based web app lives.
Expand Down
4 changes: 2 additions & 2 deletions packages/web/server/api/routers/bookmarks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ export const bookmarksAppRouter = router({
favourited: input.favourited,
id: input.ids
? {
in: input.ids,
}
in: input.ids,
}
: undefined,
},
orderBy: {
Expand Down

0 comments on commit c3a03aa

Please sign in to comment.