fix(mac-address-lookup): fix typo in mac-address-lookup tool

This commit is contained in:
Carsten Götzinger 2023-04-09 14:00:01 +02:00
parent d7a503b4ae
commit e4f2693515

View file

@ -2,10 +2,10 @@ import { Devices } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'MAC adrdress lookup',
path: '/mac-adrdress-lookup',
name: 'MAC address lookup',
path: '/mac-address-lookup',
description: 'Find the vendor and manufacturer of a device by its MAC address.',
keywords: ['mac', 'adrdress', 'lookup', 'vendor', 'parser', 'manufacturer'],
keywords: ['mac', 'address', 'lookup', 'vendor', 'parser', 'manufacturer'],
component: () => import('./mac-address-lookup.vue'),
icon: Devices,
createdAt: new Date('2023-04-06'),