Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter York committed Jan 16, 2025
1 parent 12ad180 commit 3f07ba8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/PrevNext.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
function capitaliseFirstCharacter(string: string) {
return string.charAt(0).toUpperCase() + string.slice(1);;
return string.charAt(0).toUpperCase() + string.slice(1);
}
</script>

Expand Down
7 changes: 6 additions & 1 deletion src/routes/planning/assessment/Question.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
</div>

<div class="govuk-grid-column-three-quarters">
<PrevNext {idx} total={10} urlPath="planning/assessment/q" questionType="Criterion" />
<PrevNext
{idx}
total={10}
urlPath="planning/assessment/q"
questionType="Criterion"
/>

<slot name="description" />

Expand Down
4 changes: 1 addition & 3 deletions src/routes/planning/assessment/q06/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@
</ExternalLink>
</li>
<li>
<ExternalLink
href="https://www.gov.uk/guidance/planning-obligations"
>
<ExternalLink href="https://www.gov.uk/guidance/planning-obligations">
Planning Practice Guidance: Planning Obligations
</ExternalLink>
</li>
Expand Down

0 comments on commit 3f07ba8

Please sign in to comment.