feat(kilo-pass): extend 2-month promo cutoff from Apr 11 to Apr 25#2379
Open
kilo-code-bot[bot] wants to merge 1 commit intomainfrom
Open
feat(kilo-pass): extend 2-month promo cutoff from Apr 11 to Apr 25#2379kilo-code-bot[bot] wants to merge 1 commit intomainfrom
kilo-code-bot[bot] wants to merge 1 commit intomainfrom
Conversation
| // First-time subscribers receive a 50% bonus for the first 2 months if they started | ||
| // strictly before this cutoff. (For PST, Incorporating DST) | ||
| export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-04-11T06:59:59Z').utc(); | ||
| export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-04-25T06:59:59Z').utc(); |
Contributor
Author
There was a problem hiding this comment.
WARNING: Off-by-one-second cutoff excludes the final second of Apr 24 PDT
The promo check uses isBefore(...), so setting the cutoff to 2026-04-25T06:59:59Z makes a start time of exactly 2026-04-24 23:59:59 PDT ineligible. That conflicts with the PR intent of keeping the offer available through the end of Apr 24.
Suggested change
| export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-04-25T06:59:59Z').utc(); | |
| export const KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFF = dayjs('2026-04-25T07:00:00Z').utc(); |
Contributor
Author
Code Review SummaryStatus: 1 Issues Found | Recommendation: Address before merge Overview
Issue Details (click to expand)CRITICAL
WARNING
SUGGESTION
Other Observations (not in diff)Issues found in unchanged code that cannot receive inline comments: None. Fix these issues in Kilo Cloud Files Reviewed (1 files)
Reviewed by gpt-5.4-20260305 · 260,832 tokens |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Extends the Kilo Pass 2-month promotional period by two additional weeks. The
KILO_PASS_MONTHLY_FIRST_2_MONTHS_PROMO_CUTOFFconstant inapps/web/src/lib/kilo-pass/constants.tsis updated from2026-04-11T06:59:59Zto2026-04-25T06:59:59Z.First-time subscribers who start before this cutoff receive a 50% bonus for their first 2 months. This change gives an extra two weeks for new subscribers to qualify (last inclusive day moves from April 10 to April 24, 2026 in PDT).
Verification
2026-04-25T06:59:59Z= April 24 at 11:59:59 PM PDT.Visual Changes
N/A
Reviewer Notes
Same pattern as PR #1285, which extended the cutoff from Mar 28 to Apr 11. The corresponding landing site change (kilocode-landing) will also need to be updated separately.