зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1395843 - Stop logging the whole accessible object in reducer warning r=yzen
Differential Revision: https://phabricator.services.mozilla.com/D67816 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
688cc76dfc
Коммит
55c5bdc9db
|
@ -39,7 +39,11 @@ function onUpdateDetails(state, action) {
|
|||
const { accessible, response, error } = action;
|
||||
if (error) {
|
||||
if (accessible.actorID) {
|
||||
console.warn(`Error fetching accessible details: `, accessible, error);
|
||||
console.warn(
|
||||
`Error fetching accessible details: `,
|
||||
accessible.actorID,
|
||||
error
|
||||
);
|
||||
}
|
||||
|
||||
return getInitialState();
|
||||
|
|
Загрузка…
Ссылка в новой задаче