From e95b0e04abf0bc9139c63f50ea05213e6cebbe7e Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 13:47:13 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in 3198dec according to the output from Prettier. Details: None --- front/src/lib/cart.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/front/src/lib/cart.ts b/front/src/lib/cart.ts index 4e148f8..761f872 100644 --- a/front/src/lib/cart.ts +++ b/front/src/lib/cart.ts @@ -17,7 +17,8 @@ function createCartStore() { } try { - const newData: Record = await postVerifyCart(localData); + const newData: Record = + await postVerifyCart(localData); cart.set(newData); } catch (error) { console.error("Could not load basket:", error);