Return to pre-debug state (mostly)

This commit is contained in:
2025-01-24 13:48:38 +00:00
parent 3779ab233b
commit f8d44c2193
8 changed files with 3 additions and 55 deletions

View File

@@ -5,12 +5,6 @@ export const navigation = {
toHome: () => goto("/"),
toAbout: () => goto("/about"),
toContact: () => goto("/contact"),
toRepository: () => {
console.log("Entering '/lib/navigation.js'.toRepository");
goto("/repo");
console.log("Exiting '/lib/navigation.js'.toRepository");
},
to404: () => {
throw error(404, 'Page not found');
}
toRepository: () => goto("/repo"),
to404: () => { throw error(404, 'Page not found') },
};