In this React example, the togglebot-speed variable is set to off by default. How to set value for togglebot-speed for the current user?
I couldn't find anything in the docs about it. What I've tried and didn't work:
export default withDevCycleProvider({
sdkKey: devcycleSdkKey,
/**
* Modify this user object to see how targeting is affected
*/
user: {
user_id: 'user123',
name: 'Jane Doe',
email: '[email protected]',
togglebotSpeed: 'slow'
},
options: {
logLevel: 'debug',
}
})(App);
In this React example, the
togglebot-speedvariable is set tooffby default. How to set value fortogglebot-speedfor the current user?I couldn't find anything in the docs about it. What I've tried and didn't work: