Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit ef449b2

Browse files
fixed POI broken page for refuted clients (#7289)
Co-authored-by: Matin shafiei <matin@deriv.com>
1 parent 596fe3a commit ef449b2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/javascript/app/pages/user/account/authenticate.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1307,7 +1307,9 @@ const Authenticate = (() => {
13071307
$('#idv_document_failed_try_again_btn').setVisibility(0);
13081308
$('#idv_document_failed_text').setVisibility(1);
13091309
$('#idv_document_failed_upload_btn').setVisibility(1);
1310-
$('#idv_document_failed_upload_btn').on('click', () => {
1310+
$('#idv_document_failed_upload_btn').on('click', (e) => {
1311+
e.preventDefault();
1312+
e.stopPropagation();
13111313
$('#idv_document_failed').setVisibility(0);
13121314
if (Number(onfido_submissions_left) > 0) {
13131315
handleCountrySelector();

0 commit comments

Comments
 (0)