diff --git a/Trust/Transfer/ViewControllers/SendViewController.swift b/Trust/Transfer/ViewControllers/SendViewController.swift index d953f380f..6a4f079c4 100644 --- a/Trust/Transfer/ViewControllers/SendViewController.swift +++ b/Trust/Transfer/ViewControllers/SendViewController.swift @@ -317,7 +317,13 @@ class SendViewController: FormViewController { //We use this section update to prevent update of the all section including cells. UIView.setAnimationsEnabled(false) tableView.beginUpdates() - if let containerView = tableView.footerView(forSection: 1) { + let footerSectionIndex: Int + if viewModel.isStormBird { + footerSectionIndex = 1 + } else { + footerSectionIndex = 0 + } + if let containerView = tableView.footerView(forSection: footerSectionIndex) { containerView.textLabel!.text = valueOfPairRepresantetion() containerView.sizeToFit() }