From de51975cb3472964cbb35ca3a304279689a2a8bd Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Mon, 23 Mar 2026 13:03:48 -0700 Subject: [PATCH] fix: change early bird cutoff to March 31 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sync with CCA — registrations on March 31 now see Regular tier. Co-Authored-By: Claude Opus 4.6 --- lib/event.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/event.config.ts b/lib/event.config.ts index 5d909d5..cc1c6d5 100644 --- a/lib/event.config.ts +++ b/lib/event.config.ts @@ -26,7 +26,7 @@ interface PricingTier { } export const PRICING_TIERS: PricingTier[] = [ - { label: "Early bird", price: 100, cutoff: "2026-04-01" }, + { label: "Early bird", price: 100, cutoff: "2026-03-31" }, { label: "Regular", price: 200, cutoff: "2026-06-01" }, { label: "Late", price: 250, cutoff: "2099-12-31" }, ]