diff options
author | 2023-09-06 10:53:40 +0200 | |
---|---|---|
committer | 2023-09-06 10:53:40 +0200 | |
commit | e9e0884789d03f229fdc9624dfe59709001ece93 (patch) | |
tree | 4b607d02d766e0524217a6ba9a56987130b310ac /src/tools/index.ts | |
parent | e0c7771e8f355939f5f57bf107f573d92842ff51 (diff) | |
parent | 0eedce69a6d375ea4b75dc66ac97883d8ec0c7ac (diff) | |
download | it-tools-card-hover.tar.gz it-tools-card-hover.tar.zst it-tools-card-hover.zip |
Merge branch 'main' into card-hovercard-hover
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 15770b5..aa38074 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -56,6 +56,7 @@ import { tool as metaTagGenerator } from './meta-tag-generator'; import { tool as mimeTypes } from './mime-types'; import { tool as otpCodeGeneratorAndValidator } from './otp-code-generator-and-validator'; import { tool as qrCodeGenerator } from './qr-code-generator'; +import { tool as wifiQrCodeGenerator } from './wifi-qr-code-generator'; import { tool as randomPortGenerator } from './random-port-generator'; import { tool as romanNumeralConverter } from './roman-numeral-converter'; import { tool as sqlPrettify } from './sql-prettify'; @@ -117,7 +118,7 @@ export const toolsByCategory: ToolCategory[] = [ }, { name: 'Images and videos', - components: [qrCodeGenerator, svgPlaceholderGenerator, cameraRecorder], + components: [qrCodeGenerator, wifiQrCodeGenerator, svgPlaceholderGenerator, cameraRecorder], }, { name: 'Development', |