Skip to content

Commit

Permalink
Merge pull request #24 from dddwa/update-ticket-sales-date
Browse files Browse the repository at this point in the history
Fix important dates
  • Loading branch information
JakeGinnivan authored Nov 9, 2024
2 parents c009f5b + 23846f5 commit ece52a2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions website/app/components/page-components/important-dates.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { DateTime } from 'luxon'
import { FC, useCallback, useEffect, useMemo, useState } from 'react'
import { Flex, styled } from 'styled-system/jsx'

Expand Down Expand Up @@ -68,10 +69,12 @@ const importantDatesData: ImportantDateBoxProps[] = [
eventLive: true,
},
{
datetime: '2024-11-15T09:15:00.000Z',
datetime: DateTime.fromISO('2024-11-11T23:59:59', {
zone: 'Australia/Perth',
}).toISO(),
day: 'Friday',
date: 'Nov 15',
time: '05:15pm',
date: 'Nov 11',
time: '11:59pm',
event: 'Ticket sales close',
eventLive: true,
},
Expand Down

0 comments on commit ece52a2

Please sign in to comment.