From d86f1aa422c067d2f6deae9ff56c04e8a88e2338 Mon Sep 17 00:00:00 2001 From: Uzeyir Destan Date: Wed, 26 Jun 2024 02:55:13 +0300 Subject: [PATCH] Removed mismatch check --- src/views/Print.vue | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/views/Print.vue b/src/views/Print.vue index 6852e81..a207e74 100644 --- a/src/views/Print.vue +++ b/src/views/Print.vue @@ -137,13 +137,6 @@ export default Vue.extend({ } else { this.nonce = parsed.nonce; } - if ( - this.requiredShards && - this.requiredShards < (parsed.requiredShards*2)-1 - ) { - this.$eventHub.$emit("showError", "Mismatch on the parsed QR Count"); - return; - } this.qrCodes.add(result); this.shards.push(parsed); },