Skip to content

Commit

Permalink
Fix account related URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-ju committed Oct 29, 2020
1 parent 34a8576 commit 7062e89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/root/_base.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<nav class="gem-c-header__nav">
<ul class="govuk-header__navigation govuk-header__navigation--end" aria-label="Top Level Navigation">
<li class="govuk-header__navigation-item">
<a class="govuk-header__link" href="<% Plek.new.website_root %>/transition-check/login">Sign in</a>
<a class="govuk-header__link" href="<%= Plek.new.website_root %>/transition-check/login">Sign in</a>
</li>
</ul>
</nav>
Expand All @@ -41,10 +41,10 @@
<nav class="gem-c-header__nav">
<ul class="govuk-header__navigation govuk-header__navigation--end" aria-label="Top Level Navigation">
<li class="govuk-header__navigation-item">
<a class="govuk-header__link" href="<% Plek.find("account-manager") %>">Account</a>
<a class="govuk-header__link" href="<%= Plek.new.find("account-manager") %>">Account</a>
</li>
<li class="govuk-header__navigation-item">
<a class="govuk-header__link" href="<% Plek.new.website_root %>/transition-check/logout">Sign out</a>
<a class="govuk-header__link" href="<%= Plek.new.website_root %>/transition-check/logout">Sign out</a>
</li>
</ul>
</nav>
Expand Down

0 comments on commit 7062e89

Please sign in to comment.