diff --git a/frontend/app/components/Session_/Performance/Performance.tsx b/frontend/app/components/Session_/Performance/Performance.tsx index fa4828af1..2d251a9fd 100644 --- a/frontend/app/components/Session_/Performance/Performance.tsx +++ b/frontend/app/components/Session_/Performance/Performance.tsx @@ -492,5 +492,5 @@ function Performance({ } export const ConnectedPerformance = connect((state: any) => ({ - userDeviceHeapSize: state.getIn(['sessions', 'current']).userDeviceHeapSize, + userDeviceHeapSize: state.getIn(['sessions', 'current']).userDeviceHeapSize || 0, }))(observer(Performance));