How do I remove the Sign arrow from the signature form field?
To disable showing all “Sign” overlays for a document, you can use the drawSignHereOverlay
API to update the render options before presenting a document:
document.updateRenderOptions(for: .all) {
$0.drawSignHereOverlay = false
}