diff --git a/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUD.tsx b/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUD.tsx index 3e6fe95e5..84c45157f 100644 --- a/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUD.tsx +++ b/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUD.tsx @@ -1,4 +1,4 @@ -import { useEffect, useMemo, useState } from 'react'; +import { useMemo, useState } from 'react'; import { CaptureAppConfig, Image, ImageStatus, Sight } from '@monkvision/types'; import { useTranslation } from 'react-i18next'; import { BackdropDialog } from '@monkvision/common-ui-web'; @@ -9,7 +9,7 @@ import { PhotoCaptureHUDButtons } from './PhotoCaptureHUDButtons'; import { usePhotoCaptureHUDStyle } from './hooks'; import { AddDamageHandle, PhotoCaptureMode, TutorialSteps } from '../hooks'; import { PhotoCaptureHUDOverlay } from './PhotoCaptureHUDOverlay'; -import { PhotoCaptureHUDElements, PhotoCaptureHUDElementsProps } from './PhotoCaptureHUDElements'; +import { PhotoCaptureHUDElements } from './PhotoCaptureHUDElements'; import { PhotoCaptureHUDTutorial } from './PhotoCaptureHUDTutorial'; /** diff --git a/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUDTutorial/PhotoCaptureHUDTutorial.tsx b/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUDTutorial/PhotoCaptureHUDTutorial.tsx index 27854f40e..42a72ac85 100644 --- a/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUDTutorial/PhotoCaptureHUDTutorial.tsx +++ b/packages/inspection-capture-web/src/PhotoCapture/PhotoCaptureHUD/PhotoCaptureHUDTutorial/PhotoCaptureHUDTutorial.tsx @@ -1,7 +1,7 @@ import { CSSProperties } from 'react'; import { useTranslation } from 'react-i18next'; import { Button } from '@monkvision/common-ui-web'; -import { AddDamage, CaptureAppConfig } from '@monkvision/types'; +import { CaptureAppConfig } from '@monkvision/types'; import { styles } from './PhotoCaptureHUDTutorial.styles'; import { TutorialSteps } from '../../hooks'; import { usePhotoCaptureHUDButtonBackground } from '../hooks';