refactor: Remove footer from TableModal component (#5036)

This commit is contained in:
anovazzi1 2024-12-05 13:26:06 -03:00 committed by GitHub
commit beb2ab1100
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,13 +36,6 @@ const TableModal = forwardRef<
{...props}
></TableComponent>
</BaseModal.Content>
<BaseModal.Footer>
<DialogClose>
<div className="flex w-full justify-end gap-2 pt-2">
<Button>Close</Button>
</div>
</DialogClose>
</BaseModal.Footer>
</BaseModal>
);
},