It's wacky hard to diagnose this sort of thing without direct access to the live environment. That said, the error message reports, "TypeError: Cannot read property 'name' of null." That's not a complaint about a name property. It's telling you that the object you expect to have a name property is actually null...it has no properties, name or otherwise.
I'm guessin' that the response object returned by your call on axios.get() is null, and the response's name property is merely the first reference made to the response after get() returns.
Since I don't know anything about the library you're using, I don't know why a null response didn't spring an error state on you, but that's still my guess (from way over here, while blindfolded).