Update error def
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Alessio Davoli 2024-03-06 00:10:33 +01:00
parent fe9a3f3f25
commit 9d0dbc520b
2 changed files with 10 additions and 12 deletions

View file

@ -4,7 +4,6 @@ declare global {
namespace App { namespace App {
export interface Error { export interface Error {
message: string; message: string;
errorId: string;
} }
// interface Locals {} // interface Locals {}
// interface PageData {} // interface PageData {}

View file

@ -1,4 +1,3 @@
import { error } from '@sveltejs/kit'; import { error } from '@sveltejs/kit';
import { PUBLIC_BACKEND_URL } from '$env/static/public'; import { PUBLIC_BACKEND_URL } from '$env/static/public';
@ -10,7 +9,7 @@ export async function load({ fetch }) {
const response = await fetch(`${API_URL}/route-categories`); const response = await fetch(`${API_URL}/route-categories`);
categories = await response.json(); categories = await response.json();
} catch (ex) { } catch (ex) {
error(404, "API Not Found"); error(404, { message: 'API Not Found'});
} }
return { categories }; return { categories };