formatting (biome)

This commit is contained in:
henrygd
2025-09-15 18:04:13 -04:00
parent a9e7bcd37f
commit 4e0ca7c2ba
21 changed files with 253 additions and 295 deletions

View File

@@ -23,7 +23,7 @@ export const prependBasePath = (path: string) => (basePath + path).replaceAll("/
// prepend base path to routes
for (const route in routes) {
// @ts-ignore need as const above to get nanostores to parse types properly
// @ts-expect-error need as const above to get nanostores to parse types properly
routes[route] = prependBasePath(routes[route])
}