Skip to content

Commit 5359eba

Browse files
fix(kilo-pass): end 2-month promo by moving cutoff to May 7 2026 (#3143)
fix(kilo-pass): set 2-month promo grandfather cutoff to May 7 2026 Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
1 parent ac9f006 commit 5359eba

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/lib/kilo-pass/bonus.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ describe('kilo pass bonus utilities', () => {
165165
});
166166

167167
describe('computeMonthlyCadenceBonusPercent', () => {
168-
it('keeps the second-month grandfather cutoff at midnight May 9 UTC', () => {
168+
it('keeps the second-month grandfather cutoff at midnight May 7 UTC', () => {
169169
expect(KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF.toISOString()).toBe(
170-
'2026-05-09T00:00:00.000Z'
170+
'2026-05-07T00:00:00.000Z'
171171
);
172172
});
173173

apps/web/src/lib/kilo-pass/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const KILO_PASS_FIRST_MONTH_PROMO_BONUS_PERCENT = 0.5;
1212

1313
// First-time subscribers receive a 50% bonus for month 2 only if they started
1414
// strictly before this grandfather cutoff. Month 1 remains 50% for new subscribers.
15-
export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-05-09T00:00:00Z').utc();
15+
export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-05-07T00:00:00Z').utc();
1616

1717
export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_BONUS_PERCENT = 0.5;
1818

0 commit comments

Comments
 (0)