use ‘scratch-www’ rather than ‘www’ in report to sentry

This commit is contained in:
Ben Wheeler 2019-10-09 23:05:23 -04:00
parent fbbf467878
commit cd73afee1b

View file

@ -17,7 +17,7 @@ class ErrorBoundary extends React.Component {
componentDidCatch (error, errorInfo) { componentDidCatch (error, errorInfo) {
// Display fallback UI // Display fallback UI
Sentry.withScope(scope => { Sentry.withScope(scope => {
scope.setTag('project', 'www'); scope.setTag('project', 'scratch-www');
if (this.props.name) { if (this.props.name) {
scope.setTag('errorboundary', this.props.name); scope.setTag('errorboundary', this.props.name);
} }