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')) {