change(ui) - assist userId null check

This commit is contained in:
Shekar Siri 2021-10-01 13:34:40 +05:30
parent ed2d3731b2
commit 57955bda3e

View file

@ -90,7 +90,7 @@ function AssistActions({ toggleChatWindow, userId, calling, peerConnectionStatus
<span className={cn("ml-2", { 'text-red' : inCall })}>{ inCall ? 'End Call' : 'Call' }</span>
</div>
}
content={ `Call ${userId}` }
content={ `Call ${userId ? userId : 'User'}` }
size="tiny"
inverted
position="top right"