Skip to content

Commit

Permalink
feat(#241): late is now default for new regs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jumpy-Squirrel committed May 25, 2024
1 parent 3d08542 commit 0cebe92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { DateTime } from 'luxon'
const apiPath = (path: string) => process.env.GATSBY_API_BASE_URL === undefined ? withPrefix(path) : `${process.env.GATSBY_API_BASE_URL}${path}`

const config = checkConfig({
version: 4, // increment to prevent loading from local storage (new year, pricing changes, default packages)
version: 5, // increment to prevent loading from local storage (new year, pricing changes, default packages)
eventName: 'Eurofurence',
registrationLaunch: DateTime.fromISO('2023-01-21T12:30:23+02:00'),
registrationExpirationDate: DateTime.fromISO('2024-09-22', { zone: 'Europe/Berlin' }),
Expand Down Expand Up @@ -83,7 +83,7 @@ const config = checkConfig({
},
'late': {
price: 15,
default: false, // don't forget to increment version when changing this
default: true, // don't forget to increment version when changing this
options: {},
unavailableFor: {
type: ['day'],
Expand Down

0 comments on commit 0cebe92

Please sign in to comment.