Skip to content

Commit

Permalink
Merge pull request #394 from HoomanDgtl/main
Browse files Browse the repository at this point in the history
fix: broken link
  • Loading branch information
HoomanDgtl authored Oct 16, 2024
2 parents d951b0c + ba04e92 commit 569424b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/community/events/archived.astro
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const sortedCards = archivedCards.sort((a, b) => {
)
}
<div class="mt-10 flex justify-center">
<ButtonLink variant="secondary" size="xs" link={"../events/"}>
<ButtonLink variant="secondary" size="xs" link={"/community/events/"}>
See current and upcoming events
</ButtonLink>
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/community/events/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ const sortedCards = relevantCards.sort((a, b) => {
)
}
<div class="mt-10 flex justify-center">
<ButtonLink variant="secondary" size="xs" link={"archived"}>
<ButtonLink
variant="secondary"
size="xs"
link={"/community/events/archived/"}
>
See past events in the archive
</ButtonLink>
</div>
Expand Down

0 comments on commit 569424b

Please sign in to comment.