From 6f2ccc851c798265acbb4aacafe543dbb4d19328 Mon Sep 17 00:00:00 2001 From: gme_2 Date: Thu, 4 Oct 2018 11:21:58 +0900 Subject: [PATCH] removed test data --- .../User Interface/View/Cell/WalletStatementTableViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GMERemittance/Module/WalletStatement/User Interface/View/Cell/WalletStatementTableViewCell.swift b/GMERemittance/Module/WalletStatement/User Interface/View/Cell/WalletStatementTableViewCell.swift index 082befb2..1ff99762 100644 --- a/GMERemittance/Module/WalletStatement/User Interface/View/Cell/WalletStatementTableViewCell.swift +++ b/GMERemittance/Module/WalletStatement/User Interface/View/Cell/WalletStatementTableViewCell.swift @@ -35,7 +35,7 @@ class WalletStatementTableViewCell: UITableViewCell { switch type { case .walletIn: self.walletAmountLabel.backgroundColor = AppConstants.themeBlueColor - self.walletAmountLabel.text = "IN: \(model?.walletIn ?? "")200,00,00" + self.walletAmountLabel.text = "IN: \(model?.walletIn ?? "")" case .walletOut: self.walletAmountLabel.backgroundColor = AppConstants.themeRedColor self.walletAmountLabel.text = "OUT: \(model?.walletOut ?? "")"