diff --git a/src/containers/error-boundary.jsx b/src/containers/error-boundary.jsx
index cc34b87dd398abf0a4f830672251685874584a6c..4a2114a0f8c0c55ef864947bcff8915959caace9 100644
--- a/src/containers/error-boundary.jsx
+++ b/src/containers/error-boundary.jsx
@@ -42,6 +42,7 @@ class ErrorBoundary extends React.Component {
                     Object.keys(info).forEach(key => {
                         scope.setExtra(key, info[key]);
                     });
+                    scope.setExtra('action', this.props.action);
                     window.Sentry.captureException(error);
                 });
             }