update payments attemps

This commit is contained in:
2026-01-26 16:23:27 -03:00
parent 8dfb54c64c
commit a571fb3ba9

View File

@@ -619,8 +619,7 @@ function PaymentAttemptsMenu({
<EllipsisIcon /> <EllipsisIcon />
</Button> </Button>
</PopoverTrigger> </PopoverTrigger>
<PopoverContent align="end" className="w-82"> <PopoverContent align="end" className="w-82 space-y-1.5">
<div className="p-2 space-y-1.5">
{payment_attempts.map(({ sk, brand, last4, status }, index) => { {payment_attempts.map(({ sk, brand, last4, status }, index) => {
const [, , created_at] = sk.split('#') const [, , created_at] = sk.split('#')
@@ -653,7 +652,6 @@ function PaymentAttemptsMenu({
</ul> </ul>
) )
})} })}
</div>
</PopoverContent> </PopoverContent>
</Popover> </Popover>
) )