From d8245428dee86744d1d037eea827723b616c2d31 Mon Sep 17 00:00:00 2001 From: Mauricio Uehara Date: Fri, 24 Apr 2020 13:42:14 -0300 Subject: [PATCH] Remove unused supplierTitle text which was breaking layout --- jarbas/layers/elm/Reimbursement/View.elm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/jarbas/layers/elm/Reimbursement/View.elm b/jarbas/layers/elm/Reimbursement/View.elm index 712506e99..d3c7a9263 100644 --- a/jarbas/layers/elm/Reimbursement/View.elm +++ b/jarbas/layers/elm/Reimbursement/View.elm @@ -468,11 +468,6 @@ viewReimbursement lang index reimbursement = CompanyView.view reimbursement.supplierInfo |> Html.map (CompanyMsg index) - supplierTitle = - Options.styled p - [ Typography.headline ] - [ text "" ] - sameDay : Html Msg sameDay = SameDay.view reimbursement.sameDay @@ -506,7 +501,7 @@ viewReimbursement lang index reimbursement = , sameSubquota ] , cell [ size Desktop 6, size Tablet 8, size Phone 4 ] - [ Options.styled div [] [ supplierTitle, supplier ] ] + [ Options.styled div [] [ supplier ] ] ]