From 45dd5a1cf5eac9d7c22d5e789d0ca897d7781904 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Tue, 17 Mar 2026 20:27:34 +0000 Subject: [PATCH] ALL_CAPS the locId in the error message for location_not_found error --- src/routes/board/+page.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/board/+page.ts b/src/routes/board/+page.ts index 8aa96c4..b7b8ba2 100644 --- a/src/routes/board/+page.ts +++ b/src/routes/board/+page.ts @@ -25,7 +25,7 @@ export const load: PageLoad = async ({ url }) => { title = location.n || location.t; } else { error(404, { - message: `Location (${locId}) not found`, + message: `Location (${locId.toUpperCase()}) not found`, owlCode: 'INVALID_LOCATION_CODE' }); }