Hi there!
After I reset my window in a button on my extension.
const [twitch, setTwitch] = useState(window.Twitch.ext)
const handleRefresh = () => {
window.location.reload(true);
};
The window.Twitch.ext.features.isBitsEnabled is false, until I do a full reset by right-clicking and selecting “reload”.
Is there anyway I can reload the features values to their actual values during a ‘hot-reload’ of the extension.