Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import {
// Poll configuration for post-Stripe-checkout upgrade detection. Stripe redirects
// back to the app before the webhook that flips the user to `plan=paid` has
// necessarily fired; we poll for up to 20s to bridge that race window.
export const UPGRADE_POLL_INTERVAL_MS = 2000
export const UPGRADE_POLL_MAX_MS = 20000
export const CANCELLED_BANNER_MS = 5000
const UPGRADE_POLL_INTERVAL_MS = 2000
const UPGRADE_POLL_MAX_MS = 20000
const CANCELLED_BANNER_MS = 5000

// Cloud state is a single source of truth derived from the server — never
// fabricated. Values:
Expand Down
Loading