diff --git a/app/javascript/packs/document-capture.tsx b/app/javascript/packs/document-capture.tsx index 4061335eee9..c4c13cc10ef 100644 --- a/app/javascript/packs/document-capture.tsx +++ b/app/javascript/packs/document-capture.tsx @@ -15,7 +15,6 @@ import { import { isCameraCapableMobile } from '@18f/identity-device'; import { FlowContext } from '@18f/identity-verify-flow'; import { trackEvent as baseTrackEvent } from '@18f/identity-analytics'; -import { extendSession } from '@18f/identity-session'; import type { FlowPath, DeviceContextValue } from '@18f/identity-document-capture'; /** @@ -202,12 +201,7 @@ const App = composeComponents( maxSubmissionAttemptsBeforeNativeCamera: Number(maxSubmissionAttemptsBeforeNativeCamera), }, ], - [ - DocumentCapture, - { - onStepChange: extendSession, - }, - ], + [DocumentCapture], ); render(, appRoot);