Slasher4k
Results
2
comments of
Slasher4k
in the meantime could you do something like: try { // some error prone operation } catch(err) { flash('error', 'something went wrong') await new Promise((resolve,reject) =>{ req.session.save((err)=>{ resolve(); }) })...
I have the same issue, as a workaround I scroll to the top when I handle the ready event ``` const handleReady = (payload) => { document.querySelector('.cm-activeLine').scrollIntoView(); } ```