Getting "Error: Exceeded maxRedirects. Probably stuck in a redirect loop"

My question:
I am getting Error: Exceeded maxRedirects. Probably stuck in a redirect loop for my previously working POST request. I have not changed any setting so far.
I tried to increase the count of “Maximum number of redirects” under Settings but it has no effect.

Can someone help me out?

Me too. Same problem following a Udemy Tutorial and doing a post to Postgresql/Node.js
Error: Exceeded maxRedirects. Probably stuck in a redirect loop http://localhost:3000/monsters
The data posts 10 times (preset number of timeouts) but I get this error.
If I remove the redirect it posts normally (1x) but it never finishes: Sending request…

router.post(“/”, (request, response, next) => {
const { name, personality } = request.body;
pool.query(
“INSERT INTO monsters(name, personality) VALUES($1, $2)”,
[name, personality],
(err, res) => {
if (err) return next(err);
// response.redirect(“/monsters”); //this is not working! redirect lOOP.
}
);
});