From 4078a65b4b1bb008c5e4e2df65cf5cc93ddb522a Mon Sep 17 00:00:00 2001 From: iza <59828082+izadoesdev@users.noreply.github.com> Date: Tue, 4 Aug 2026 15:28:58 +0300 Subject: [PATCH] style(basket): wrap defineErrorCatalog call to satisfy formatter --- apps/basket/src/lib/structured-errors.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/basket/src/lib/structured-errors.ts b/apps/basket/src/lib/structured-errors.ts index e73cc4e39..b34dd9d6f 100644 --- a/apps/basket/src/lib/structured-errors.ts +++ b/apps/basket/src/lib/structured-errors.ts @@ -178,7 +178,10 @@ const BASKET_ERROR_SPEC = { }, } as const; -export const basketErrorCatalog = defineErrorCatalog("basket", BASKET_ERROR_SPEC); +export const basketErrorCatalog = defineErrorCatalog( + "basket", + BASKET_ERROR_SPEC +); export const CLIENT_ERROR_MESSAGES: ReadonlySet = new Set( Object.values(BASKET_ERROR_SPEC)