From 437622fe88dab5019dd6cd40dcd18ac9b510094f Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 11:19:38 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in 8dd6fda according to the output from Prettier. Details: None --- front/src/lib/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/lib/api.ts b/front/src/lib/api.ts index a698a2d..dc3735e 100644 --- a/front/src/lib/api.ts +++ b/front/src/lib/api.ts @@ -4,7 +4,7 @@ import TestData from "./test-data"; const API_URL = "http://127.0.0.1:8080"; export async function getPopularToday(): Promise { - const response = await fetch( `${API_URL}/api/items`); + const response = await fetch(`${API_URL}/api/items`); const { data, error }: JSONResponse = await response.json(); if (response.ok) {