Skip to content

Commit

Permalink
Remove unused RenderHeading method
Browse files Browse the repository at this point in the history
  • Loading branch information
andymantell committed Oct 7, 2024
1 parent c035238 commit 21fe754
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@
var uploadFileHasError = ((TagBuilder)Html.ValidationMessageFor(m => m.UploadedFile)).HasInnerHtml;
var selectOptionHasError = ((TagBuilder)Html.ValidationMessageFor(m => m.HasValue)).HasInnerHtml;

void RenderHeading()
{
if (!string.IsNullOrWhiteSpace(Model.Heading))
{
<h1 class="govuk-heading-l">@Model.Heading</h1>
}
}

void RenderDescription()
{
if (!string.IsNullOrWhiteSpace(Model.Description))
Expand Down

0 comments on commit 21fe754

Please sign in to comment.