UI changes and updates, collection page refresh

This commit is contained in:
Sean Morley
2024-12-26 11:07:59 -05:00
parent c9dd5fe33d
commit f7c998ab58
20 changed files with 834 additions and 834 deletions

View File

@@ -6,7 +6,7 @@ import type { PageServerLoad } from './$types';
const endpoint = PUBLIC_SERVER_URL || 'http://localhost:8000';
export const load = (async (event) => {
const id = event.params.id;
const id = event.params.id.toUpperCase();
let regions: Region[] = [];
let visitedRegions: VisitedRegion[] = [];