diff --git a/src/containers/internal/views/recent-calls/index.tsx b/src/containers/internal/views/recent-calls/index.tsx index 1000a7a..b2a85f9 100644 --- a/src/containers/internal/views/recent-calls/index.tsx +++ b/src/containers/internal/views/recent-calls/index.tsx @@ -157,7 +157,10 @@ export const RecentCalls = () => { {!hasValue(calls) && hasLength(accounts) ? ( ) : hasLength(calls) ? ( - calls.map((call) => ) + //call.call_sid is null incase of failure, cannot be used as key + calls.map((call) => ( + + )) ) : ( No data. )}