remove console log and lint

This commit is contained in:
x032205
2025-10-23 16:29:55 -04:00
parent 5bff92fe56
commit 50a6c353a0
2 changed files with 1 additions and 3 deletions

View File

@@ -3,13 +3,13 @@ import { z } from "zod";
import { THsmServiceFactory } from "@app/ee/services/hsm/hsm-service";
import { crypto } from "@app/lib/crypto/cryptography";
import { QueueWorkerProfile } from "@app/lib/types";
import { TKmsRootConfigDALFactory } from "@app/services/kms/kms-root-config-dal";
import { TSuperAdminDALFactory } from "@app/services/super-admin/super-admin-dal";
import { BadRequestError } from "../errors";
import { removeTrailingSlash } from "../fn";
import { CustomLogger } from "../logger/logger";
import { zpStr } from "../zod";
import { TKmsRootConfigDALFactory } from "@app/services/kms/kms-root-config-dal";
export const GITLAB_URL = "https://gitlab.com";

View File

@@ -38,8 +38,6 @@ export const PamAccessAccountModal = ({ isOpen, onOpenChange, account }: Props)
"years"
];
console.log({ unit, duration });
// ms library does not handle months (M) so we do it separately
if (unit === "M") {
const value = parseInt(duration, 10);