Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit c2e8d78

Browse files
author
BuildTools
committed
fix(StripeController): update credit tier prices to reflect accurate amounts
1 parent 086e35d commit c2e8d78

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

dist/controllers/StripeController.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,21 @@ const CREDIT_TIERS = [
5959
},
6060
{
6161
id: "tier2",
62-
price: 199, // 1.99€ in cents
62+
price: 198, // 1.98€ in cents
6363
credits: 400,
6464
name: "400 credits",
6565
image: "https://croissant-api.fr/assets/credits/tier2.png"
6666
},
6767
{
6868
id: "tier3",
69-
price: 499, // 4.99€ in cents
69+
price: 495, // 4.95€ in cents
7070
credits: 1000,
7171
name: "1000 credits",
7272
image: "https://croissant-api.fr/assets/credits/tier3.png"
7373
},
7474
{
7575
id: "tier4",
76-
price: 999, // 9.99€ in cents
76+
price: 990, // 9.90€ in cents
7777
credits: 2000,
7878
name: "2000 credits",
7979
image: "https://croissant-api.fr/assets/credits/tier4.png"

src/controllers/StripeController.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ const CREDIT_TIERS = [
2323
},
2424
{
2525
id: "tier2",
26-
price: 199, // 1.99€ in cents
26+
price: 198, // 1.98€ in cents
2727
credits: 400,
2828
name: "400 credits",
2929
image: "https://croissant-api.fr/assets/credits/tier2.png"
3030
},
3131
{
3232
id: "tier3",
33-
price: 499, // 4.99€ in cents
33+
price: 495, // 4.95€ in cents
3434
credits: 1000,
3535
name: "1000 credits",
3636
image: "https://croissant-api.fr/assets/credits/tier3.png"
3737
},
3838
{
3939
id: "tier4",
40-
price: 999, // 9.99€ in cents
40+
price: 990, // 9.90€ in cents
4141
credits: 2000,
4242
name: "2000 credits",
4343
image: "https://croissant-api.fr/assets/credits/tier4.png"

0 commit comments

Comments
 (0)