I was able to figure out the issue. There was a section of my code where i was calling state and strigifying the JSON object, thus removing the actual function.
let options = JSON.parse(JSON.stringify(this.state.options));
I updated my code to remove the strigify:
let options = this.state.options
It's working as intended now.