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} initialValues={initialValues}
toolInfo={{ toolInfo={{
title: calcData.name, title: calcData.name,
description: description: calcData.longDescription
(calcData.description || '') +
' Generated from formula: ' +
calcData.formula
}} }}
verticalGroups verticalGroups
getGroups={({ values, updateField }) => [ getGroups={({ values, updateField }) => [

View File

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