🐛 fix: Fix dependencies

This commit is contained in:
web
2025-10-21 05:28:40 -07:00
parent ca892dd359
commit 8bd25d651b
8 changed files with 3842 additions and 10 deletions
+3 -1
View File
@@ -20,6 +20,7 @@
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.1",
"@iconify-json/flagpack": "^1.2.2",
"@iconify-json/logos": "^1.2.4",
@@ -27,7 +28,7 @@
"@iconify-json/simple-icons": "^1.2.20",
"@iconify-json/uil": "^1.2.3",
"@iconify/react": "^5.2.0",
"@monaco-editor/react": "^4.6.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.7",
@@ -65,6 +66,7 @@
"input-otp": "^1.4.2",
"lucide-react": "^0.542.0",
"mathjs": "^14.0.1",
"monaco-editor": "^0.54.0 ",
"monaco-themes": "^0.4.6",
"motion": "^11.18.1",
"next-themes": "^0.4.6",
@@ -2,7 +2,6 @@
import { Button } from '@workspace/ui/components/button';
import { cn } from '@workspace/ui/lib/utils';
import 'katex/dist/katex.min.css';
import { Check, Copy } from 'lucide-react';
import { useCallback, useState } from 'react';
import ReactMarkdown, { Components } from 'react-markdown';
@@ -143,9 +143,9 @@ export function ProTable<
header: texts?.actions,
cell: ({ row }) => (
<div className='flex items-center justify-end gap-2'>
{actions
?.render?.(row.original)
.map((item, index) => <Fragment key={index}>{item}</Fragment>)}
{actions?.render?.(row.original).map((item, index) => (
<Fragment key={index}>{item}</Fragment>
))}
</div>
),
enableSorting: false,