Skip to content

Commit 2fe5a0b

Browse files
committed
fix: stop forwarding legacy signer ids
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent fa9fd6c commit 2fe5a0b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/components/RightSidebar/RequestSignatureTab.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,6 @@ type IdentifySignerMethod = Pick<IdentifyMethodRecord, 'method' | 'value'>
340340
type IdentifySignerToEdit = {
341341
localKey?: string
342342
identify?: string
343-
signRequestId?: string
344343
displayName?: string
345344
description?: string
346345
identifyMethods?: IdentifySignerMethod[]
@@ -500,7 +499,6 @@ function toIdentifySignerToEdit(signer: EditableRequestSigner): IdentifySignerTo
500499
return {
501500
localKey: signer.localKey,
502501
identify: getEditableSignerIdentify(signer),
503-
signRequestId: signer.signRequestId !== undefined ? String(signer.signRequestId) : undefined,
504502
displayName: signer.displayName,
505503
description: signer.description ?? undefined,
506504
identifyMethods: signer.identifyMethods?.map((method: IdentifyMethodRecord) => ({

0 commit comments

Comments
 (0)