Next.js Course part-2 Issue Tracker : Assigned issue to users

So in my case the solution was a combo. only some may apply to your case(s):

  1. Check you package.json for ‘@prisma/client’. If you have this you’ve probably done an oopsie earlier in the project.
  2. npm uninstall @prisma/client
  3. npm uninstall prisma
  4. npm install prisma@5.3.1
  5. Close VS Code
  6. Go to your folder directory in your OS file browser. Delete ‘node_modules’ folder
  7. Reopen Project in VS Code
  8. npm i
  9. npm run dev
  10. Retry Postman Patch assignedToUserId step. Hopefully it works for you now.
2 Likes