From 213f1368829c45ea05f7db500c035a8eb8563a72 Mon Sep 17 00:00:00 2001 From: Reece Browne <74901996+reecebrowne@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:20:24 +0000 Subject: [PATCH] lint (#5802) --- frontend/src/desktop/services/saasBillingService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/desktop/services/saasBillingService.ts b/frontend/src/desktop/services/saasBillingService.ts index 32585d103..2c8b4622f 100644 --- a/frontend/src/desktop/services/saasBillingService.ts +++ b/frontend/src/desktop/services/saasBillingService.ts @@ -263,7 +263,7 @@ export class SaasBillingService { throw error; } - throw new Error('Failed to fetch billing status'); + throw new Error('Failed to fetch billing status', { cause: error }); } } @@ -313,7 +313,7 @@ export class SaasBillingService { throw error; } - throw new Error('Failed to open billing portal'); + throw new Error('Failed to open billing portal', { cause: error }); } } @@ -428,7 +428,7 @@ export class SaasBillingService { throw error; } - throw new Error('Failed to create checkout session'); + throw new Error('Failed to create checkout session', { cause: error }); } } }