diff --git a/src/Components/Facility/Consultations/Feed.tsx b/src/Components/Facility/Consultations/Feed.tsx index 07fd6f31739..523256cbae3 100644 --- a/src/Components/Facility/Consultations/Feed.tsx +++ b/src/Components/Facility/Consultations/Feed.tsx @@ -240,7 +240,7 @@ export const Feed: React.FC = ({ consultationId, facilityId }) => { }, []); useEffect(() => { - if (streamStatus === StreamStatus.Playing) { + if (!currentPreset && streamStatus === StreamStatus.Playing) { setLoading(CAMERA_STATES.MOVING.GENERIC); const preset = bedPresets?.find( @@ -506,7 +506,6 @@ export const Feed: React.FC = ({ consultationId, facilityId }) => {
{["fullScreen", "reset", "updatePreset", "zoomIn", "zoomOut"].map( (button, index) => { - if (isIOS && button === "reset") return null; const option = cameraPTZ.find( (option) => option.action === button );