Angular Interpolated Value Shows [Object Object]
09:41 27 Nov 2018

In my Angular app I am making a call to the API to get some "next stage" info. Once I have that I'm parsing out the name so that I can print that to the view. I am making use of async/await within this function.

Instead of printing the string value for "stage" to the view, what I see is [Object Object].

Why is my interpolated value showing [Object Object] instead of "regular" in this case?

angular async-await interpolation