forked from jsnbuchanan/crowd-funder-for-time-pwa
fix(lint): resolve low and medium impact warnings
- Remove console statements and replace with proper logging - Fix line length violations in comments - Maintain functionality while improving code quality Reduces lint warnings from 30 to 25 by addressing: - 3 console statement violations - 2 line length violations
This commit is contained in:
@@ -179,7 +179,7 @@ export class DeepLinkHandler {
|
||||
const validRoute = routeSchema.parse(path) as DeepLinkRoute;
|
||||
routeName = ROUTE_MAP[validRoute].name;
|
||||
} catch (error) {
|
||||
console.error(`[DeepLink] Invalid route path: ${path}`);
|
||||
logger.error(`[DeepLink] Invalid route path: ${path}`);
|
||||
|
||||
// Redirect to error page with information about the invalid link
|
||||
await this.router.replace({
|
||||
|
||||
Reference in New Issue
Block a user