Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
It's hard to say without seeing code, but I imagine you have something like this in your app/index.js
var myImg = document.getElementById("myImg");
In order for that to work, you'd need to have an image declared in your svg file like this:
<image id="myImg" href="something.png" />
Best Answer