Skip to content

Commit

Permalink
Merge pull request #70 from ThatConference/next/feature
Browse files Browse the repository at this point in the history
fix: event link on mobile drop down menu
  • Loading branch information
theClarkSell committed Sep 20, 2023
2 parents bfd8918 + 8548176 commit 95c4f89
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
const dispatch = createEventDispatcher();
function buildUrl(page) {
return `/events/${event.slug}/${page}/`;
return `/${event.slug}/${page}/`;
}
function buildAnchorLink(anchor) {
return `/events/${event.slug}#${anchor}`;
return `/${event.slug}#${anchor}`;
}
</script>

Expand Down

1 comment on commit 95c4f89

@vercel
Copy link

@vercel vercel bot commented on 95c4f89 Sep 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.