Skip to content

Commit

Permalink
fix(ui): Incorrect router links in footer
Browse files Browse the repository at this point in the history
  • Loading branch information
robere2 committed Nov 21, 2024
1 parent 6ce57d1 commit 0a26e8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/ui/src/components/Footer.vue
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@
:order="display.width.value >= 556 ? 1 : 2">
<h2>Info</h2>
<div>
<p><RouterLink to="privacy">Privacy Policy</RouterLink></p>
<p><RouterLink to="accessibility">Accessibility Statement</RouterLink></p>
<p><RouterLink to="/privacy">Privacy Policy</RouterLink></p>
<p><RouterLink to="/accessibility">Accessibility Statement</RouterLink></p>
</div>
</v-col>
<v-col :cols="display.width.value >= 556 ? 4 : 12"
@@ -21,7 +21,7 @@
<FontAwesomeIcon class="github-icon icon" icon="fa-brands fa-github" />
</a>
</p>
<p><RouterLink to="constitution">Constitution</RouterLink></p>
<p><RouterLink to="/constitution">Constitution</RouterLink></p>
<p><a href="https://github.com/rpitv/glimpse/wiki">Wiki</a></p>
</v-col>
<v-col :cols="display.width.value >= 556 ? 4 : 12" class="last-col col social" :order="3">

0 comments on commit 0a26e8b

Please sign in to comment.