Skip to content

Commit

Permalink
chore: Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FleetAdmiralJakob committed Jan 21, 2024
1 parent 2c5893b commit 4c6ce7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/trpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const rateLimitMiddleware = t.middleware(async ({ ctx, path, next }) => {
log.warn("Rate limit exceeded", { ip: identifier });
throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: "Rate limit exceeded on this IP: " + identifier,
message: "Rate limit exceeded on this identifier: " + identifier,
});
}
return next();
Expand Down

1 comment on commit 4c6ce7c

@vercel
Copy link

@vercel vercel bot commented on 4c6ce7c Jan 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.