no need to log this
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 47s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m19s

This commit is contained in:
Lee 2024-10-26 15:45:40 +01:00
parent b3cd770724
commit 5f4d3829e2

@ -43,7 +43,6 @@ export async function kyFetch<T>(url: string): Promise<T | undefined> {
try {
return await ky.get<T>(url).json();
} catch (error) {
console.error(`Error fetching data from ${url}:`, error);
return undefined;
}
}