Neli Harbuzava

Results 8 comments of Neli Harbuzava

I got this working on real device

I got this working on real device

Hi @ch1ll0ut1 ! Have you solved this? Could you please share your solution if you had solved this :)

I found `react-laag` docs saying that `onOutsideClick only has effect on root-layer`. So I managed this issue by wrapping nested element in its own onClickOutside adapter (from `react-cool-onclickoutside` for example).

@alan-la-chen-478 Hey, have you found a solution? I also need to get the db file and send it to the server, but I cannot find a way to do this....

@andrisi You can pause the stream while waiting for async operations, like this: ```javascript const csvStream = fs.createReadStream('file.csv') .pipe(csv.parse({ headers: true })) .on('data', async (row) => { try { csvStream.pause();...