fix: misc

This commit is contained in:
Ibrahima G. Coulibaly
2025-04-17 08:22:21 +01:00
parent 1d49889e18
commit 1cc774e75d
3 changed files with 2 additions and 15 deletions

View File

@@ -1,6 +0,0 @@
import { expect, describe, it } from 'vitest';
// import { main } from './service';
//
// describe('generic-calc', () => {
//
// })

View File

@@ -237,10 +237,7 @@ export default async function makeTool(
initialValues={initialValues}
toolInfo={{
title: calcData.name,
description:
(calcData.description || '') +
' Generated from formula: ' +
calcData.formula
description: calcData.longDescription
}}
verticalGroups
getGroups={({ values, updateField }) => [

View File

@@ -17,13 +17,9 @@ allGenericCalcs.forEach((x) => {
tools.push(
defineTool('number', {
name: x.name,
...x,
path: 'generic-calc/' + x.path,
icon: x.icon || '',
description: x.description || '',
shortDescription: x.description || '',
keywords: ['calculator', 'math', ...x.keywords],
longDescription: x.longDescription || '',
component: lazy(importComponent2)
})
);