Skip to content

Commit

Permalink
fix: incorrect url
Browse files Browse the repository at this point in the history
  • Loading branch information
theClarkSell committed Mar 21, 2022
1 parent b3b2f16 commit 362f3ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/events/_components/_Hybrid.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
</section>

<section>
<WhatIs />
<WhatIs {event} />
</section>

<section>
Expand Down
4 changes: 3 additions & 1 deletion src/routes/events/_components/hybrid/WhatIs.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<script>
export let event;
import { Action as ActionLink } from '$elements/links';
</script>

Expand Down Expand Up @@ -35,7 +37,7 @@
professional and family tracks, so there is something to learn and experience at all ages.
</p>
<div class="pt-8">
<ActionLink href="/support/">View Schedule</ActionLink>
<ActionLink href={`/events/${event.slug}/schedule/`}>View Schedule</ActionLink>
</div>
</div>
</div>
Expand Down

0 comments on commit 362f3ed

Please sign in to comment.