Skip to content

Commit e06c8a4

Browse files
authored
feat(kilo-pass): extend 2-month promo period by one week (#1067)
## Summary Extends the Kilo Pass 2-month promo cutoff from March 14th to March 21st, 2026. This change updates the `KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF` constant in `src/lib/kilo-pass/constants.ts`. ## Verification - Verified the change is a single-line date update matching the pattern from PR #360. - Confirmed the new date is exactly 7 days after the current cutoff. ## Visual Changes N/A ## Reviewer Notes N/A Built for [josh](https://kilo-code.slack.com/archives/C0A6SM2UG8N/p1773343569836179) by [Kilo for Slack](https://kilo.ai/features/slack-integration)
2 parents 26a4c2b + 93cabd5 commit e06c8a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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 the first 2 months if they started
1414
// strictly before this cutoff.
15-
export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-03-14T07:59:59Z').utc();
15+
export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-03-21T07:59:59Z').utc();
1616

1717
export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_BONUS_PERCENT = 0.5;
1818

0 commit comments

Comments
 (0)