From 9ae3161860692a73ecdd77afb45d88bf7aedd9d8 Mon Sep 17 00:00:00 2001 From: Barcode Betty Date: Sat, 23 May 2026 20:43:31 +0000 Subject: [PATCH] fix: update trustedOrigins to match current domains Replace stale .farh.net subdomains with correct *.cartsnitch.com domains to fix CORS Origin validation blocking UAT auth (403 on sign-up/sign-in). Refs: CAR-992 Co-Authored-By: Paperclip --- src/auth.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/auth.ts b/src/auth.ts index b439590..09b493f 100644 --- a/src/auth.ts +++ b/src/auth.ts @@ -116,8 +116,7 @@ export const auth = betterAuth({ "http://localhost:3000", "http://localhost:5173", "https://cartsnitch.com", - "https://cartsnitch.farh.net", - "https://cartsnitch.dev.farh.net", - "https://cartsnitch.uat.farh.net", + "https://dev.cartsnitch.com", + "https://uat.cartsnitch.com", ], }); \ No newline at end of file -- 2.52.0