Skip to content

Commit

Permalink
no mgic numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
chitalian committed Jan 22, 2025
1 parent 985359c commit 469c5c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion valhalla/jawn/src/managers/stripe/StripeManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ const proProductPrices = {
alerts: process.env.PRICE_PROD_ALERTS_ID!,
};

const COST_OF_PROMPTS = 200;

const EARLY_ADOPTER_COUPON = "9ca5IeEs"; // WlDg28Kf | prod: 9ca5IeEs

export class StripeManager extends BaseManager {
Expand Down Expand Up @@ -57,7 +59,7 @@ export class StripeManager extends BaseManager {
}
}

return ok(200);
return ok(COST_OF_PROMPTS);
}

private async getOrCreateStripeCustomer(): Promise<Result<string, string>> {
Expand Down

0 comments on commit 469c5c8

Please sign in to comment.