@if (DestinationBalance?.Any() is true)
{
Destination Pending Balances
}
@if (PendingPayouts?.Any() is true)
{
Pending Payouts
| Payout Id |
Reserve fee |
Amount |
@foreach (var (payoutId, pendingPayout) in PendingPayouts)
{
| @payoutId |
@pendingPayout.FeeCharged |
@pendingPayout.PayoutAmount |
}
}
@code {
private string? UpdatingDestination { get; set; }
private long? UpdatingValue { get; set; }
[Parameter]
public Dictionary