Skip to content

Commit

Permalink
fix: revert minimized calling cell
Browse files Browse the repository at this point in the history
  • Loading branch information
przemvs committed Jul 5, 2024
1 parent 034042e commit b6fe67c
Show file tree
Hide file tree
Showing 19 changed files with 762 additions and 1,057 deletions.
1 change: 0 additions & 1 deletion src/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,6 @@
"videoCallvideoInputCamera": "Camera",
"videoSpeakersTabAll": "All ({{count}})",
"videoSpeakersTabSpeakers": "Speakers",
"viewingInAnotherWindow": "Viewing in another window",
"warningCallIssues": "This version of {{brandName}} can not participate in the call. Please use",
"warningCallQualityPoor": "Poor connection",
"warningCallUnsupportedIncoming": "{{user}} is calling. Your browser doesn’t support calls.",
Expand Down
21 changes: 11 additions & 10 deletions src/script/components/Conversation/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -490,16 +490,17 @@ export const Conversation = ({
}

return (
<CallingCell
key={conversation.id}
classifiedDomains={classifiedDomains}
call={call}
callActions={callingViewModel.callActions}
callingRepository={callingRepository}
pushToTalkKey={callingViewModel.propertiesRepository.getPreference(
PROPERTIES_TYPE.CALL.PUSH_TO_TALK_KEY,
)}
/>
<div className="calling-cell" key={conversation.id}>
<CallingCell
classifiedDomains={classifiedDomains}
call={call}
callActions={callingViewModel.callActions}
callingRepository={callingRepository}
pushToTalkKey={callingViewModel.propertiesRepository.getPreference(
PROPERTIES_TYPE.CALL.PUSH_TO_TALK_KEY,
)}
/>
</div>
);
})}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const createProps = async () => {
pushToTalkKey: null,
conversation,
hasAccessToCamera: true,
isSelfVerified: true,
teamState: mockTeamState,
videoGrid: {grid: [], thumbnail: undefined},
} as CallingCellProps;
Expand Down
Loading

0 comments on commit b6fe67c

Please sign in to comment.