diff options
Diffstat (limited to 'src/tools/index.ts')
-rw-r--r-- | src/tools/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts index 9ca90dd..bc29ac6 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -1,6 +1,7 @@ import { LockOpen } from '@vicons/tabler'; import type { ToolCategory } from './Tool'; +import { tool as bcrypt } from './bcrypt'; import { tool as caseConverter } from './case-converter'; import { tool as colorConverter } from './color-converter'; import { tool as qrCodeGenerator } from './qr-code-generator'; @@ -24,7 +25,7 @@ export const toolsByCategory: ToolCategory[] = [ { name: 'Crypto', icon: LockOpen, - components: [tokenGenerator, hashText, uuidGenerator, cypher, bip39], + components: [tokenGenerator, hashText, bcrypt, uuidGenerator, cypher, bip39], }, { name: 'Converter', |