Back to Clerk

`isEmailLinkError` import moved under `/errors`

packages/upgrade/src/versions/core-2/nextjs/isemaillinkerror-import-change.md

latest332 B
Original Source

The isEmailLinkError import path has changed from @clerk/nextjs to @clerk/nextjs/errors. You must update your import path in order for it to work correctly. Example below of the fix that needs to be made:

diff
- import { isEmailLinkError } from "@clerk/nextjs"
+ import { isEmailLinkError } from "@clerk/nextjs/errors"