style: format code with Prettier

This commit fixes the style issues introduced in 8dd6fda according to the output
from Prettier.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-05-13 11:19:38 +00:00 committed by GitHub
parent 8dd6fdaa15
commit 437622fe88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,7 @@ import TestData from "./test-data";
const API_URL = "http://127.0.0.1:8080";
export async function getPopularToday(): Promise<Item[]> {
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) {