Back to Clerk

`MultiSessionAppSupport` import moved under `/internal`

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

latest445 B
Original Source

The MultiSessionAppSupport import path has changed from @clerk/nextjs to @clerk/nextjs/internal. You must update your import path in order for it to work correctly. Note that internal imports are not intended for usage and are outside the scope of semver. Example below of the fix that needs to be made:

diff
- import { MultiSessionAppSupport } from "@clerk/nextjs"
+ import { MultiSessionAppSupport } from "@clerk/nextjs/internal"