diff --git a/src/components/views/elements/TagTile.js b/src/components/views/elements/TagTile.js index 057ec4921b..00aea1efd3 100644 --- a/src/components/views/elements/TagTile.js +++ b/src/components/views/elements/TagTile.js @@ -58,6 +58,8 @@ export default React.createClass({ ).then((profile) => { if (this.unmounted) return; this.setState({profile}); + }).catch((err) => { + console.warn('Could not fetch group profile for ' + this.props.tag, err); }); } },