diff --git a/sites/shared/components/error/error-boundary.js b/sites/shared/components/error/error-boundary.js
index e8948beb6df..6ffef23816f 100644
--- a/sites/shared/components/error/error-boundary.js
+++ b/sites/shared/components/error/error-boundary.js
@@ -26,7 +26,7 @@ class ErrorBoundary extends React.Component {
static getDerivedStateFromError(error) {
// Update state so the next render will show the fallback UI.
- return { hasError: true };
+ return { hasError: true, error };
}
componentDidCatch(error, errorInfo) {
diff --git a/sites/shared/components/workbench/events.js b/sites/shared/components/workbench/events.js
index 3aa5631769d..ae965cbcb10 100644
--- a/sites/shared/components/workbench/events.js
+++ b/sites/shared/components/workbench/events.js
@@ -24,7 +24,7 @@ const Event = ({ evt, units }) => {
return