From d7e0e95849f3636a3d2097500fd8a024d00d0a69 Mon Sep 17 00:00:00 2001 From: William Randall Birdsall Date: Thu, 26 Sep 2024 11:40:14 -0400 Subject: [PATCH] changelog: Bug Fixes, In-person Proofing, Fix 404 Error on PO Search Page --- app/javascript/packs/document-capture.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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);