Skip to content

Commit

Permalink
Merge branch 'main' into hotfix/website-next-router-linting
Browse files Browse the repository at this point in the history
  • Loading branch information
PeerRich committed Apr 17, 2024
2 parents ffc7169 + 51927f8 commit b942870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/v2/src/app.rewrites.middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class RewriterMiddleware implements NestMiddleware {
if (req.url.startsWith("/v2/ee")) {
req.url = req.url.replace("/v2/ee", "/v2");
}
if (req.url.contains("reccuring")) {
if (req.url.includes("reccuring")) {
req.url = req.url.replace("reccuring", "recurring");
}
next();
Expand Down

0 comments on commit b942870

Please sign in to comment.