Skip to content

Commit 81d353e

Browse files
committed
Update product IDs for recurring and one-time tips in production environment
1 parent ac3c3f1 commit 81d353e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

backend/src/business/tips/TipsService.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ const recurringForFrequency: Record<
1717
},
1818
};
1919

20-
const RECURRING_PRODUCT_ID = isProduction() ? 'XXX' : 'prod_RqWpsbQnybLsmU';
21-
const ONE_TIME_PRODUCT_ID = isProduction() ? 'XXX' : 'prod_RqWxloaBN1Gqnd';
20+
const RECURRING_PRODUCT_ID = isProduction()
21+
? 'prod_S9HJnU8utlvPTX'
22+
: 'prod_RqWpsbQnybLsmU';
23+
const ONE_TIME_PRODUCT_ID = isProduction()
24+
? 'prod_S9HKYT98DRZT6J'
25+
: 'prod_RqWxloaBN1Gqnd';
2226

2327
export async function createTipCheckoutSession({
2428
amountMinorUnits: amount,

0 commit comments

Comments
 (0)