Amandeep Singh
Amandeep Singh
> Hey man! are you talking about this code below? > > ``` > if(process.env.NODE_ENV === 'development') { > //Codes here > } else if (process.env.NODE_ENV === 'production') { >...
@todorpavlovic I still don't understand why err.errmsg is undefined in first place. I mean why doesn't `let error = { ...err }` work.
> Someone suggested a hack such as this to fix it: > > ```js > const icons = Quill.import('ui/icons'); > icons['code-block'] = '\n' + '\t\n' + '\t\n' + '\t\n' +...
@allanRubenstein Here is a work around ```ts const VirtuosoList: Components["List"] = forwardRef((props, ref) => { return ( {props.children} ); }); ```