Skip to content

Commit

Permalink
change to 5s
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashesh3 committed Nov 16, 2023
1 parent b5bf116 commit e13c746
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Facility/Consultations/Feed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export const Feed: React.FC<IFeedProps> = ({ consultationId, facilityId }) => {
}
},
});
}, 1000);
}, 5000);
} else if (!statusReported) {
triggerGoal("Camera Feed Viewed", {
consultationId,
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Facility/Consultations/LiveFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const LiveFeed = (props: any) => {
onSuccess: () => setStreamStatus(StreamStatus.Playing),
onError: () => setStreamStatus(StreamStatus.Offline),
});
}, 1000);
}, 5000);
}

return () => {
Expand Down

0 comments on commit e13c746

Please sign in to comment.