Ryan Grey
Ryan Grey
## Steps to reproduce 1. User triggers fingerprint dialog from a button press. Handler looks something like the following: ``` private async Task ButtonHandler() { var authenticationRequestConfiguration = new AuthenticationRequestConfiguration(title,...
To reproduce issue: - Follow **Developing** section in readme and load `localhost:3000` in browser - Type `12` in default finput field - Select all and copy - Position caret between...
Reported by user. I haven't tried replicating this. Probably worth checking if issue exists in other browsers too.
We use the `Number(...)` constructor in a few places. Wrapping a string in the number constructor is going to cause rounding errors for values above `Number.MAX_SAFE_INTEGER`: `Number("9007199254740991.45")` will result in...