Axios POST not working with lambda functions

I rolled it back and it still didn’t work. Then I noticed that I needed an await. I was passing the body to the action from another file like this:
const alert = action(body);

But it needed the await like this:
const alert = await action(body);

When I added it during testing before, VScode automatically changed my require when I did a filename change, so it didn’t work during that test. I’m good to go now! Thank you.