fixed issue with base and now badge

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-11-17 14:30:21 -06:00
parent 349ddf6cce
commit 5746a8d536

View File

@ -55,14 +55,7 @@ class BadgeViewController: BaseViewController {
override func viewDidLoad() {
super.viewDidLoad()
let view = UIView()
view.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(badge)
badge.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
badge.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
badge.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
addContentTopView(view: view)
addContentTopView(view: badge)
setupForm()
setupPicker()
setupModel()