You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was facing issues after cloning the project about the request body being undefined, until I have added into the /server/src/app.ts file the following:
import bodyParser from 'body-parser';
app.use(bodyParser.json())