Back to Clerk

`decodeJwt` import moved to `@clerk/backend/tokens`

packages/upgrade/src/versions/core-2/backend/decodejwt-import-path-move.md

latest314 B
Original Source

The decodeJwt import path has changed from @clerk/backend to @clerk/backend/tokens. 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 { decodeJwt } from "@clerk/backend"
+ import { decodeJwt } from "@clerk/backend/tokens"