1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-09 15:40:55 +00:00

use console.error instead of console.log

This commit is contained in:
slowbackspace 2019-03-05 11:53:33 +01:00
parent 15cc6e00f3
commit 4757c71f45

View File

@ -100,7 +100,7 @@ export const fetchLocale = (locale: string): ThunkAction => (dispatch: Dispatch)
});
})
.catch(error => {
console.log(error);
console.error(error);
});
};