Benjamin Hall

Results 7 comments of Benjamin Hall

Posting my journey to test RBD components in case it's useful. Rather than testing what happens in my app when drag operations occur, I've been figuring out how to test...

Trying to minimally replicate in a fresh repo: https://github.com/bhallstein/wmr-testing - In the original issue, `@heroicons/react` was a dep of the top level project and also a sub-dependency of `otter-editor`. -...

+1-ing this, am excited to try switching our dev tooling to nollup, have the same issues. Currently using rollup and our directory structure is roughly like this: ``` /app-1 /various-code...

Thanks for your reply. I understand it may not be possible to expedite, but the company I am freelancing for need some functionality delivered under a tight deadline, and I'd...

Thanks for your reply @jaredperreault-okta. After restructuring that way, the promise returned by `getUser()` does now reject. However the result is the same as adding an `afterError` handler outside the...

I've tried to work around using `showSignIn` instead of `showSignInAndGetTokens`: ```js oktaSignIn.on('afterError', function (context, error) { console.log(context.controller); console.log(error.name); console.log(error.message); console.log(error.statusCode); }); function authenticate() { oktaSignIn.showSignIn({ el: '#okta-login-container' }) .then(function(result) {...

Ah, I've just disabled the MFA policy in the app (set it to password only), and that has fixed the issue! In this case it looks the API might be...