Commit a74f6681 authored by Muhammadali's avatar Muhammadali

update-

parent 8e8d78df
......@@ -46,13 +46,13 @@ const InnerCaller = ({ hidden, type, from }) => {
<Block hidden={hidden}>
<div className='top'>
<p className='call_text nocopy'>
{type == 'connectingIncoming' ||
(type == 'connected' && (
{(type == 'connectingIncoming' || type == 'connected') && (
<>
{translator.translate('CALL_FROM')}{' '}
<span className='phone_text'>{from}</span>
</>
))}
)}
{type == 'connectingOutgoing' && (
<>
{translator.translate('CALL_TO')}{' '}
......@@ -61,9 +61,7 @@ const InnerCaller = ({ hidden, type, from }) => {
)}
</p>
</div>
<div className='bottom'>
{selectModalType(type)}
</div>
<div className='bottom'>{selectModalType(type)}</div>
</Block>
);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment