update package

This commit is contained in:
2025-11-19 15:13:00 -03:00
parent a180e269f2
commit d37db405c8
51 changed files with 5870 additions and 2490 deletions

View File

@@ -2,8 +2,7 @@ import type { Route } from './+types'
import { useLoaderData } from 'react-router'
import { DataTable } from '@/components/data-table'
import { columns, type Webhook } from './columns'
import { type Webhook } from './columns'
export function meta({}: Route.MetaArgs) {
return [{ title: 'Webhooks' }]
@@ -24,8 +23,6 @@ export default function Page() {
Adicione webhooks para sua organização.
</p>
</div>
<DataTable columns={columns} data={data} />
</>
)
}