From 246fca490359f7c40c0961d399dd38c1f2583040 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Fri, 21 May 2021 22:03:18 -0500 Subject: [PATCH] :bug: Fix typo and remove not needed import --- packages/cli/src/Server.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/cli/src/Server.ts b/packages/cli/src/Server.ts index a758d045b6..ba4eb543d0 100644 --- a/packages/cli/src/Server.ts +++ b/packages/cli/src/Server.ts @@ -8,7 +8,6 @@ import { resolve as pathResolve, } from 'path'; import { - getConnection, getConnectionManager, In, } from 'typeorm'; @@ -22,7 +21,7 @@ import { RequestOptions } from 'oauth-1.0a'; import * as csrf from 'csrf'; import * as requestPromise from 'request-promise-native'; import { createHmac } from 'crypto'; -// IMPORRTANT! Do not switch to anther bcrypt library unless really needed and +// IMPORTANT! Do not switch to anther bcrypt library unless really necessary and // tested with all possible systems like Windows, Alpine on ARM, FreeBSD, ... import { compare } from 'bcryptjs'; import * as promClient from 'prom-client';