From 36e74576148b23764d915ccac78934f6655f99ad Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 15:26:32 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in fd132eb according to the output from Prettier. Details: None --- front/src/lib/test-api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/lib/test-api.ts b/front/src/lib/test-api.ts index f45fcd5..d112473 100644 --- a/front/src/lib/test-api.ts +++ b/front/src/lib/test-api.ts @@ -74,7 +74,7 @@ export async function getItemsByUUID(items: string[]): Promise { } export async function getItemByUUID(uuid: string): Promise { - const data = await getItemsByUUID([uuid]) + const data = await getItemsByUUID([uuid]); if (data.length !== 1) { throw new Error("Resource could not be found"); } @@ -130,5 +130,5 @@ export async function postVerifyCart( }); await fakeDelay(1); - return newCartData + return newCartData; }