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
}