From 5f541d48033d3647dfb09db71e701a27bbafdc5f Mon Sep 17 00:00:00 2001 From: Roei Erez Date: Thu, 14 Dec 2023 10:13:04 +0200 Subject: [PATCH] fix swift snippet --- snippets/swift/BreezSDKExamples/Sources/Webhook.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/swift/BreezSDKExamples/Sources/Webhook.swift b/snippets/swift/BreezSDKExamples/Sources/Webhook.swift index 6acd8f9..38df5cf 100644 --- a/snippets/swift/BreezSDKExamples/Sources/Webhook.swift +++ b/snippets/swift/BreezSDKExamples/Sources/Webhook.swift @@ -15,6 +15,6 @@ func webhook(sdk: BlockingBreezServices) throws { func paymentWebhook(sdk: BlockingBreezServices) { // ANCHOR: register-payment-webook - sdk.registerWebhook(webhookUrl: "https://your-nds-service.com/notify?platform=ios&token=").await? + sdk.registerWebhook(webhookUrl: "https://your-nds-service.com/notify?platform=ios&token=") // ANCHOR_END: register-payment-webook }