From 43c9e987a48af541522a392d82674fa7cb559479 Mon Sep 17 00:00:00 2001 From: Jeremy-Z Date: Thu, 22 Jan 2026 12:38:05 -0500 Subject: [PATCH] Moving the clear duplicate orders call around to coverage more use cases. --- src/layouts/duplicate-check/duplicate-check.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/duplicate-check/duplicate-check.vue b/src/layouts/duplicate-check/duplicate-check.vue index f9d2815e..33ad86ef 100644 --- a/src/layouts/duplicate-check/duplicate-check.vue +++ b/src/layouts/duplicate-check/duplicate-check.vue @@ -137,7 +137,6 @@ export default { async forwardButtonAction() { // If user clicked foward without selecting an option or user click on "start a new claim" button. if (this.selectedAnswer == null || this.selectedAnswer === 'NewClaim') { - this.mainStore.updateDuplicateCheckVisited(true); this.navigateForward(); return; } @@ -156,6 +155,7 @@ export default { } }, navigateForward() { + this.mainStore.updateDuplicateCheckVisited(true); if (!this.mainStore.isPolicyLookupSuccessful) { this.$router.navigate( this.navigationScenarios.CLICKED_FORWARD_POLICY_UNVERIFIED,