From 06999d700f80df615f4e45ddffae45e5f49d7e73 Mon Sep 17 00:00:00 2001 From: Maxime Bajeux Date: Wed, 18 Dec 2024 15:37:08 +0100 Subject: [PATCH] feat(account): remove a removed function ref ref: MANAGER-15565 Signed-off-by: Maxime Bajeux --- .../identity-documents/user-identity-documents.controller.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/manager/apps/dedicated/client/app/account/identity-documents/user-identity-documents.controller.js b/packages/manager/apps/dedicated/client/app/account/identity-documents/user-identity-documents.controller.js index 8ed23ba0e592..04bb41e0d3f9 100644 --- a/packages/manager/apps/dedicated/client/app/account/identity-documents/user-identity-documents.controller.js +++ b/packages/manager/apps/dedicated/client/app/account/identity-documents/user-identity-documents.controller.js @@ -89,7 +89,6 @@ export default class AccountUserIdentityDocumentsController { } uploadIdentityDocuments() { - this.handleUploadConfirmModal(false); this.loading = true; this.displayError = false; this.trackClick(TRACKING_TASK_TAG.confirmSendMyDocuments); @@ -100,7 +99,9 @@ export default class AccountUserIdentityDocumentsController { this.tryToFinalizeProcedure(this.links) : // In order to start the KYC procedure we need to request the upload links for the number of documents // the user wants to upload - this.getUploadDocumentsLinks(Object.values(this.files).flatMap(({ files }) => files).length) + this.getUploadDocumentsLinks( + Object.values(this.files).flatMap(({ files }) => files).length, + ) // Once we retrieved the upload links, we'll try to upload them and then "finalize" the procedure creation .then(({ data: { uploadLinks } }) => { this.links = uploadLinks;