Stojan Sljivic

Results 7 comments of Stojan Sljivic

@akserg any chance this PR can be merged and new release created soon?

I could create my own UI to collect new user password, but I would like to reuse the existing amplify-ui for that.

The best I could do for now is to pre-fill username and password: ``` formFields={{ signIn: { username: { defaultValue: username, isReadOnly: true, }, password: { defaultValue: password, isReadOnly: true,...

In the end, I ended up using `useAuthenticator` and its' `submitForm` function: ``` const auth = useAuthenticator((ctx) => [ctx.authStatus]) ... auth.submitForm({ type: 'SIGN_IN', username: searchParams.get('email'), password: searchParams.get('code'), }) ``` However,...

Just found an answer: instead of gulp-concat, there is a gulp-concat-css that does exactly what it needs. Please close this issue.

To be precise, in version 0.2.0 this worked correctly: ``` ioc.use('util', ioc.node('app/util')); ``` But in version 0.2.2 I got a warning that node() is deprecated and that it should be...

Using reactor-kafka for tequest-reply is really a missing link between webflux and kafka. Is this something on your roadmap?