From 6a768fb18bd9736dd4c6fafd7520b5b2f558787e Mon Sep 17 00:00:00 2001 From: "Christiano, Kevin" Date: Fri, 31 May 2019 14:01:19 -0400 Subject: [PATCH] uneeded constraints. --- MVMCoreUI/Atoms/Views/LeftRightLabelView.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/MVMCoreUI/Atoms/Views/LeftRightLabelView.swift b/MVMCoreUI/Atoms/Views/LeftRightLabelView.swift index a2855d5a..2b2fe7e9 100644 --- a/MVMCoreUI/Atoms/Views/LeftRightLabelView.swift +++ b/MVMCoreUI/Atoms/Views/LeftRightLabelView.swift @@ -107,8 +107,6 @@ import Foundation bottomAnchor.constraint(greaterThanOrEqualTo: leftLabelBottomAnchor).isActive = true } - rightTextLabel?.topAnchor.constraint(equalTo: topAnchor).isActive = true - rightTextLabel?.trailingAnchor.constraint(equalTo: trailingAnchor).isActive = true NSLayoutConstraint.constraintPinSubview(rightTextLabel, pinTop: true, pinBottom: false, pinLeft: false, pinRight: true) let rightTextBottom = rightTextLabel?.bottomAnchor.constraint(equalTo: bottomAnchor)