Silence annoying React deprecation notice of useful functionality

pull/1496/head
Piero Toffanin 2024-05-01 13:39:10 -04:00
rodzic a44c2ce86f
commit e7337f3b5d
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -8,6 +8,16 @@ import { setLocale } from './translations/functions';
// Main is always executed first in the page
// Silence annoying React deprecation notice of useful functionality
const originalError = console.error;
console.error = function(...args) {
let message = args[0];
if (typeof message === 'string' && message.indexOf('Warning: A future version of React will block javascript:') !== -1) {
return;
}
originalError.apply(console, args);
};
// We share some objects to avoid having to include them
// as a dependency in each component (adds too much space overhead)
window.ReactDOM = ReactDOM;