Remove or add flag for disabling warning about react components starting with uppercase letter
closed
Brandon R
I recently updated react-navigation in a project in which ClojureScript is used. ClojureScript is compiled to JavaScript, and the component names may be lowercased. This causes many warnings to be printed in the terminal.
A flag to disable the warning or the removal of the warning would be great. Currently I've overridden console.warn to filter the warnings.
Brandon R
Thanks for the info.
satya164
closed
You can use
LogBox.ignoreLogs
to silence the warningBrandon R