Apply suggestions from code review

Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
This commit is contained in:
Seb 2023-06-18 16:05:40 +01:00 committed by GitHub
parent 6314eef566
commit 265860e993
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,9 @@ import { defineTool } from '../tool';
export const tool = defineTool({ export const tool = defineTool({
name: 'Percentage calculator', name: 'Percentage calculator',
path: '/percentage-calculator', path: '/percentage-calculator',
description: 'Calculate percentages', description: 'Easily calculate percentages from a value to another value, or from a percentage to a value.',
keywords: ['percentage', 'calculator'], keywords: ['percentage', 'calculator', 'calculate', 'value', 'number', '%'],
component: () => import('./percentage-calculator.vue'), component: () => import('./percentage-calculator.vue'),
icon: Percentage, icon: Percentage,
createdAt: new Date('2023-06-18'),
}); });