From 61d65b1e2692c7333c56c918c766131c8b2e0833 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 24 Sep 2024 23:51:36 +0530 Subject: [PATCH] chore: lint --- server/src/api/index.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/server/src/api/index.ts b/server/src/api/index.ts index 33680bcb..e1e4e5a4 100644 --- a/server/src/api/index.ts +++ b/server/src/api/index.ts @@ -1,6 +1,5 @@ const genAPIKey = () => { - //create a base-36 string that contains 30 chars in a-z,0-9 return [...Array(30)] - .map((e) => ((Math.random() * 36) | 0).toString(36)) - .join(''); - }; \ No newline at end of file + .map((e) => ((Math.random() * 36) | 0).toString(36)) + .join(''); +}; \ No newline at end of file