aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc/routers/highlights.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/trpc/routers/highlights.ts')
-rw-r--r--packages/trpc/routers/highlights.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/trpc/routers/highlights.ts b/packages/trpc/routers/highlights.ts
index 3436653e..6124e35f 100644
--- a/packages/trpc/routers/highlights.ts
+++ b/packages/trpc/routers/highlights.ts
@@ -34,7 +34,7 @@ const ensureHighlightOwnership = experimental_trpcMiddleware<{
if (!highlight) {
throw new TRPCError({
code: "NOT_FOUND",
- message: "Bookmark not found",
+ message: "Highlight not found",
});
}
if (highlight.userId != opts.ctx.user.id) {