From 841900e781a7e0381d18647835ccf129111f5486 Mon Sep 17 00:00:00 2001 From: Mitchell Magro Date: Wed, 14 Jan 2026 15:36:28 +0100 Subject: [PATCH] added user it for prod test - to remove later --- src/config/cashierConfig.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config/cashierConfig.ts b/src/config/cashierConfig.ts index d07c339..700b620 100644 --- a/src/config/cashierConfig.ts +++ b/src/config/cashierConfig.ts @@ -129,8 +129,7 @@ export function getCashierConfig(): ICashierConfig { const userId = params.get('userId'); if (userId) { - // Use userId from URL remove for production - config.userId = '12345'; + config.userId = userId; } else if (import.meta.env.DEV) { // Development fallback: use a default numeric userId for testing // The API expects customer ID to be a numeric value