Update buttons.tsx

This commit is contained in:
Lee Robinson
2025-01-15 13:47:00 -06:00
committed by GitHub
parent 29f96d1fc1
commit f83f04cf32

View File

@@ -27,7 +27,7 @@ export function UpdateInvoice({ id }: { id: string }) {
export function DeleteInvoice({ id }: { id: string }) {
return (
<>
<button className="rounded-md border p-2 hover:bg-gray-100">
<button type="submit" className="rounded-md border p-2 hover:bg-gray-100">
<span className="sr-only">Delete</span>
<TrashIcon className="w-5" />
</button>