🐛 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
@@ -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,