diff --git a/p2p_wallet/Resources/en.lproj/Localizable.strings b/p2p_wallet/Resources/en.lproj/Localizable.strings index 14da62ca87..9f13411d17 100644 --- a/p2p_wallet/Resources/en.lproj/Localizable.strings +++ b/p2p_wallet/Resources/en.lproj/Localizable.strings @@ -213,7 +213,6 @@ "Keep your pin safe. Hide your pin from other people." = "Keep your pin safe. Hide your pin from other people."; "Key App" = "Key App"; "Key App cannot scan QR codes without access to your camera. Please enable access under Privacy settings." = "Key App cannot scan QR codes without access to your camera. Please enable access under Privacy settings."; -"Key App doesn’t make any profit from this swap 💚" = "Key App doesn’t make any profit from this swap 💚"; "Key App one-time transfer link" = "Key App one-time transfer link"; "Key App respects your privacy - it can't access your funds or personal details. Your information stays securely stored on your device and in the blockchain" = "Key App respects your privacy - it can't access your funds or personal details. Your information stays securely stored on your device and in the blockchain."; "Key App’s" = "Key App’s"; diff --git a/p2p_wallet/Scenes/Main/Swap/Swap/SwapView.swift b/p2p_wallet/Scenes/Main/Swap/Swap/SwapView.swift index 0d21ccd550..d35a3231e4 100644 --- a/p2p_wallet/Scenes/Main/Swap/Swap/SwapView.swift +++ b/p2p_wallet/Scenes/Main/Swap/Swap/SwapView.swift @@ -75,6 +75,7 @@ private extension SwapView { Text("Route: " + (viewModel.getRouteInSymbols()?.joined(separator: " -> ") ?? "")) .apply(style: .label2) .foregroundColor(.red) + .padding(.top, 8) // Slippage (for debugging) Text("Slippage: \(Double(viewModel.stateMachine.currentState.slippageBps) / 100)%") @@ -82,13 +83,6 @@ private extension SwapView { .foregroundColor(.red) #endif - // Disclaimer - Text(L10n.keyAppDoesnTMakeAnyProfitFromThisSwap💚) - .apply(style: .label1) - .foregroundColor(Color(.mountain)) - .padding(.top, 16) - .accessibilityIdentifier("SwapView.profitInfoLabel") - // Warning message if let warningState = viewModel.warningState { SwapPriceImpactView(model: warningState)