From 250099b81d545ba3e3ade7874dde933b9333d07f Mon Sep 17 00:00:00 2001
From: Robert Long <robert@robertlong.me>
Date: Thu, 21 Oct 2021 12:53:17 -0700
Subject: [PATCH] Add call id to GroupCallInspector

---
 src/GroupCallInspector.jsx | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/GroupCallInspector.jsx b/src/GroupCallInspector.jsx
index f4e9d1d..53b54c5 100644
--- a/src/GroupCallInspector.jsx
+++ b/src/GroupCallInspector.jsx
@@ -9,6 +9,7 @@ function getCallUserId(call) {
 
 function getCallState(call) {
   return {
+    id: call.callId,
     opponentMemberId: getCallUserId(call),
     state: call.state,
     direction: call.direction,
@@ -121,7 +122,7 @@ export function GroupCallInspector({ client, groupCall, show }) {
   }, [toDeviceEvents]);
 
   return (
-    <Resizable enable={{ top: true }} >
+    <Resizable enable={{ top: true }}>
       {show && (
         <ReactJson
           theme="monokai"