From cebb1d249b5a42a1c5de4a99d12be7dd73798e2c Mon Sep 17 00:00:00 2001 From: Salvatore Laisa Date: Tue, 19 Nov 2024 19:47:30 +0100 Subject: [PATCH] chore: remove console.log --- routes/api/password.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/routes/api/password.ts b/routes/api/password.ts index 5e1d02a..e9e9130 100644 --- a/routes/api/password.ts +++ b/routes/api/password.ts @@ -26,8 +26,6 @@ export const generatePassword = (_options?: Options): string => { const options = { ...defaults, ..._options }; - console.log(options, _options); - const charset = Object.keys(options) .sort() .filter((key) => options[key as Charset])