From a277497066aed6e2c8c3bd10cfc75c65025c5e39 Mon Sep 17 00:00:00 2001 From: Artur Guseinov Date: Thu, 21 Sep 2023 13:01:49 +0800 Subject: [PATCH] Force unwrap removed --- .../Wallet/Notifications/NotificationsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/WalletApp/PresentationLayer/Wallet/Notifications/NotificationsView.swift b/Example/WalletApp/PresentationLayer/Wallet/Notifications/NotificationsView.swift index 1098135dd..7bb2cb404 100644 --- a/Example/WalletApp/PresentationLayer/Wallet/Notifications/NotificationsView.swift +++ b/Example/WalletApp/PresentationLayer/Wallet/Notifications/NotificationsView.swift @@ -42,7 +42,7 @@ struct NotificationsView: View { } } .task { - try! await presenter.fetch() + try? await presenter.fetch() } }