Skip to content

Commit

Permalink
fix: use event startdate for workshop
Browse files Browse the repository at this point in the history
  • Loading branch information
zaudtke committed Apr 15, 2022
1 parent 4fb828f commit 60b155b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/events/_components/tickets/_Workshops.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export let event;
import { createEventDispatcher } from 'svelte';
import dayjs from 'dayjs';
import { Standard as StandardButton } from '$elements/buttons';
import { CheckFull } from '$elements/svgs';
Expand Down Expand Up @@ -76,7 +76,9 @@
<CheckFull height="h-4" width="h-4" />
</span>
</div>
<p class="ml-3 text-sm text-gray-700">Event Access Monday 1/17</p>
<p class="ml-3 text-sm text-gray-700">
Event Access {dayjs(event.startDate).format('dddd M/D')}
</p>
</li>

<li class="flex items-start lg:col-span-1">
Expand Down

0 comments on commit 60b155b

Please sign in to comment.