Wesley Scholl
Wesley Scholl
I am also having this issue when attempting: ``` const key = "buzzes" var value = JSON.stringify(this.state.buzzes) await SInfo.setItem(key, value, {}); ``` TypeError: _reactNativeSensitiveInfo.default.getItem is not a function
I was able to mitigate this error with a timeout: Method ``` countDownFinished() { setTimeout(() => { this.setState({ showCountDown: false }) }, 100) } ``` Component ``` {this.state.showCountDown === true...
Did you rename the .env.example file to .env? If the file extension is not .env the test will not pass. Also make sure you are using a Mainnet Polygon url...
I am having a similar issue when attempting to update the value to a different value than the +/- step value. The state is being updated but the value stays...
I found a work around. It seems by waiting to set the state, it updates correctly. Hope this helps. ``` setTimeout(() => { this.setState({ hours: 23 }) }, 100) ```
I have tested and using `````` also works when wrapping the `````` as seen below. `````` is a child of ``````. Thank you for this workaround! ``` import * as...
It doesn't work on windows.
Tested with multiple scenarios including: OnExit - workflow level Hook - workflow level Hook - step level All produce the same result.
I’m also getting this error, I think it’s a token permission issue.