From e41209c0e5c7dda710ab17a85981adbf5fa6d031 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 31 Mar 2023 11:41:09 +0200 Subject: [PATCH] fix(ui) - userDeviceHeapSize null --- frontend/app/components/Session_/Performance/Performance.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));