Skip to content

Commit

Permalink
Remove debug change
Browse files Browse the repository at this point in the history
  • Loading branch information
GLDuval committed May 5, 2023
1 parent 9e6461d commit 72ed703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/Feed/Feeds/CameraFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const View: FC<Props> = ({ feed }) => {
export const CameraFeed: FC<Props> = ({ feed }) => {
const [state] = useActor(rosService);
const connected =
!state.matches('connected') || feed.camera.type === CameraType.WEBCAM;
state.matches('connected') || feed.camera.type === CameraType.WEBCAM;
useEffect(() => {
log.debug('mounting camera', feed.camera.name);
return () => {
Expand Down

0 comments on commit 72ed703

Please sign in to comment.