I created Context Menu button in Document library (not web part) that displays some info using 'office-ui-fabric-react' library.
The problem is when I open my SharePoint Online page and my extension loads, I get millions of console warnings.
I tried to disable it that way:
import { setIconOptions } from 'office-ui-fabric-react/lib/Styling';
setIconOptions({
disableWarnings: true
});
It doesn't help. And I need only three icons.
What can I do in this situation?
Thank you!