Skip to content

Commit

Permalink
fix(nextjs): Stop ts errors for non-static nextjs typed routes in aut…
Browse files Browse the repository at this point in the history
…hMiddleware
  • Loading branch information
desiprisg committed Oct 23, 2023
1 parent 52f8553 commit 5d227e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nextjs/src/server/authMiddleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ type ExcludeRootPath<T> = T extends '/' ? never : T;
type RouteMatcherWithNextTypedRoutes =
| WithPathPatternWildcard<ExcludeRootPath<NextTypedRoute>>
| NextTypedRoute
| (string & object);
// eslint-disable-next-line @typescript-eslint/ban-types
| (string & {});

const INFINITE_REDIRECTION_LOOP_COOKIE = '__clerk_redirection_loop';

Expand Down

0 comments on commit 5d227e9

Please sign in to comment.