Can’t save Bits Products in Dev Rig

Okay, I found the error in some of the Rig source files:

src/util/api.ts
_line 183:
*const path = ‘/v5/bits/extensions/twitch.ext.${clientId}/products/put’;

has to be
const path = `/v5/bits/extensions/twitch.ext.${clientId}/products/put`;

In your git repository this is correct, in your provided zip-files of the Dev Rig not

1 Like