🐛 Fix typo and remove not needed import

This commit is contained in:
Jan Oberhauser 2021-05-21 22:03:18 -05:00
parent f43781b137
commit 246fca4903

View file

@ -8,7 +8,6 @@ import {
resolve as pathResolve, resolve as pathResolve,
} from 'path'; } from 'path';
import { import {
getConnection,
getConnectionManager, getConnectionManager,
In, In,
} from 'typeorm'; } from 'typeorm';
@ -22,7 +21,7 @@ import { RequestOptions } from 'oauth-1.0a';
import * as csrf from 'csrf'; import * as csrf from 'csrf';
import * as requestPromise from 'request-promise-native'; import * as requestPromise from 'request-promise-native';
import { createHmac } from 'crypto'; 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, ... // tested with all possible systems like Windows, Alpine on ARM, FreeBSD, ...
import { compare } from 'bcryptjs'; import { compare } from 'bcryptjs';
import * as promClient from 'prom-client'; import * as promClient from 'prom-client';