Mero

Results 7 comments of Mero

Found solution for me: Switched onFinish form callback to onClick callback on submit button: ```jsx onClick={() => form.validateFields().then(, ()=>{})} ``` In test: ```jsx it('', async() => { ... // without...

It's march of 2023, the problem is still there

@rigor789 here is the issue I've opened: https://github.com/NativeScript/nativescript-cli/issues/5724

@endigo9740 here you go: https://stackblitz.com/edit/skeletonlabs-repl-hxhxxd?file=src%2Froutes%2F%2Bpage.svelte Short REPL description: - if you press "open toast" it will call `toastStore.trigger` - if you check the "open new toast at the same time...

@endigo9740 Glad you asked, yeah, I faced this issue in plain usage. You need to get in timing when the previous toast is about to close, right before this if...

It's useful when you need to create handler entities with their own data & methods, that is much clear with to do woth classes(objects), rather than functions created through scope...

Also I faced the problem with event handler type on base level ``` export let handlerType1: () => void; export let handlerType2: Function; // invalid type in both cases ......