VS Code Material Icon not rendering icon for certain folders

Viewed 2277

I use VScode extension Material Icon for give folder icons but lately it's not rendering properly for certains folders even if there are in the icon library

here is the image of the folder with the icon:

enter image description here

and as you can see that the folder Icon is exist on the library

enter image description here

as some of the solutions was to edit material icons setting to target react-redux active icon pack

enter image description here

still not working well

1 Answers

You probably have overridden the association in the settings. As for the documentation of Material Icons Theme, it's a bit confusing and incomplete, so this is a workaround, add this to settings.json

"material-icon-theme.folders.associations": {
    "firebase": "firebase"
}

Hope it helps.

Related