From 0a129e4aaf7685971b6229e7c44103ec7dbff1b7 Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Thu, 11 Dec 2025 20:10:46 -0300 Subject: [PATCH] fix: correct Signer component prop in VisibleElements The Signer component expects signerIndex prop but VisibleElements was passing current-signer instead. This caused Vue warnings about missing required prop and errors when trying to access signer data. Changed :current-signer to :signer-index and removed obsolete :signer prop since the component now fetches signer data from the store using the signerIndex. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- src/Components/Request/VisibleElements.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Components/Request/VisibleElements.vue b/src/Components/Request/VisibleElements.vue index bb8075d95..cb6fc71a4 100644 --- a/src/Components/Request/VisibleElements.vue +++ b/src/Components/Request/VisibleElements.vue @@ -32,9 +32,8 @@