commit a68b2d272754e36399f818a71f8002702aba7a35
parent 605eefc9bf0333c662c1eea9d7a33f26022e986b
Author: Marc Stibane <marc@taler.net>
Date: Fri, 30 Jun 2023 19:24:44 +0200
remove debugging
Diffstat:
3 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/TalerWallet1/Views/Exchange/ManualWithdrawDone.swift b/TalerWallet1/Views/Exchange/ManualWithdrawDone.swift
@@ -47,7 +47,6 @@ struct ManualWithdrawDone: View {
let amount = Amount.amountFromCents(exchange.currency!, centsToTransfer)
let result = try await model.sendAcceptManualWithdrawalM(exchange.exchangeBaseUrl,
amount: amount, restrictAge: 0)
-print(result as Any)
transactionId = result!.transactionId
} catch { // TODO: error
symLog.log(error.localizedDescription)
diff --git a/TalerWallet1/Views/Main/MainView.swift b/TalerWallet1/Views/Main/MainView.swift
@@ -42,11 +42,11 @@ struct MainView: View {
ErrorView(errortext: nil) // TODO: show Error View
} else {
LaunchAnimationView()
- .task {
- let deviceW = UIScreen.main.bounds.width
- let deviceH = UIScreen.main.bounds.height
- print(deviceW, deviceH)
- }
+// .task {
+// let deviceW = UIScreen.main.bounds.width
+// let deviceH = UIScreen.main.bounds.height
+// print("UIScreen: \(deviceW), \(deviceH)")
+// }
}
}
.animation(.easeOut(duration: LAUNCHDURATION), value: controller.backendState)
diff --git a/TalerWallet1/Views/Transactions/TransactionDetailView.swift b/TalerWallet1/Views/Transactions/TransactionDetailView.swift
@@ -188,7 +188,6 @@ struct TransactionDetailView: View {
}
}
} // ManualDetails or Confirm with bank
- let _ = print("ThreeAmounts")
ThreeAmountsSheet(common: common, topTitle: String(localized: "Chosen amount to withdraw:"),
baseURL: withdrawalTransaction.details.exchangeBaseUrl, large: true)
case .payment(let paymentTransaction):