Bill Yen

Results 2 comments of Bill Yen

This issue should be closed. Not a bug. Failed job need to be handle in the `on('failed')` event (either in job level with `job.on("failed", (err)=>{})`, or in queue level with...

if you are using `next.js` , just do dynamic import with ssr disabled. ```jsx const StickyBox = dynamic(() => import('react-sticky-box'), { ssr: false, }); ```