Robin Philip Thomas

Results 9 comments of Robin Philip Thomas

> Hello @MrRobz can you provide more info on this ticket please? > > Maybe I'd like to have a stab at it. > > (Participating for Hacktoberfest) Done

Thank you for your kind words. Tags do seem like a cool feature. Adding this to the roadmap.

Ya makes sense. What could be done is, instead of each sub-folder being a collection, we could derive sub-folder's actions from its root parent.

What worked for me was setting `nodeIntegration: true,` for mainWindow. ``` const mainWindow = new BrowserWindow({ width: 1200, height: 800, webPreferences: { preload: MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY, nodeIntegration: true, }, }); ```

This is expected. This is due to Icon Shelf app not being code signed for windows. Getting an EV code signing certificate for windows does cost money, somewhere from $100...

interesting. What OS are you using @jonnybaumann Windows, Mac or Linux ?

If using v4 of this package, you need to change your imports from ``` import { ReactComponent as Icon} from '/src/assets/icon.svg'; ``` to ``` import Icon from '/src/assets/icon.svg?react'; ```