Markus Englund

Results 29 comments of Markus Englund

I'm guessing it has something to do with the fact that it's trying to import a file that has an esm export, and maybe the server side babel or webpack...

[React components must start with a capital letter](https://reactjs.org/docs/jsx-in-depth.html#user-defined-components-must-be-capitalized). I'm guessing that's what is causing your first problem. There's no special procedure. I tried importing ListAdder to the Header file and...

Look at the error message in dev-tools to see what went wrong. You don't have to hook up a component to redux if you're not using any state from the...

If you replace async await with something else it'll work. Babel handles async keyword in pretty complicated way, and the repo is currently not set up to handle it.

The easiest way for you to do it is to add `@babel/polyfill` to the repo. 1. `npm install @babel/polyfill` 2. Import it at the top of the `client.jsx` file like...

Cool. Just a few issues: * The layout of icons from the 'react-icons'-library has been messed up. * css-loader gives error readout in the terminal when running `npm run build`....

Looks like a dependency I used for compression (zopfli-webpack-plugin) has been deprecated and no longer works properly. I went ahead and changed it to compression-webpack-plugin and also updated the node-sass...

Thanks, man. Yeah, having multiple users on the same board was the original plan for the project (that's why the `users` field in the DB is an array as you...

I don't really understand what this does. Could you explain a bit more why this would be useful?

Ok, makes sense. If you want to make a PR I'll merge it.