From e373c4a65e4c6bc8bbb21d51c4fd99abb32b2ffb Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Sat, 13 Dec 2025 16:35:19 -0500 Subject: [PATCH] chore: remove some random console.logs --- app/components/error-banner.tsx | 2 -- app/routes/acls/acl-action.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/app/components/error-banner.tsx b/app/components/error-banner.tsx index 6ad50eb..4a519ab 100644 --- a/app/components/error-banner.tsx +++ b/app/components/error-banner.tsx @@ -170,12 +170,10 @@ export function getErrorMessage(error: Error | unknown): { // Traverse the error chain to find the root cause let rootError = error; - console.log('error', error.cause != null); if (error.cause != null) { rootError = error.cause as Error; while (rootError.cause != null) { rootError = rootError.cause as Error; - console.log('setting rootError', rootError.message); } } diff --git a/app/routes/acls/acl-action.ts b/app/routes/acls/acl-action.ts index 594b6c7..b3b0ffa 100644 --- a/app/routes/acls/acl-action.ts +++ b/app/routes/acls/acl-action.ts @@ -55,8 +55,6 @@ export async function aclAction({ request, context }: Route.ActionArgs) { throw error; } - console.log('rawData', message); - // Starting in Headscale 0.27.0 the ACLs parsing was changed meaning // we need to reference other error messages based on API version. if (context.hsApi.clientHelpers.isAtleast('0.27.0')) {