UI bug fix

This commit is contained in:
fmtabbara
2022-03-22 15:44:39 +00:00
parent 3003be5e68
commit 06aa09afcd
2 changed files with 6 additions and 8 deletions
@@ -9,7 +9,7 @@ export const SuccessView: React.FC<{ details?: { amount: string; address: string
<>
<SuccessReponse
title="Delegation Request Complete"
subtitle="Successfully requested delegation to node. Note it may take up to 1 hour to take effect "
subtitle="Successfully requested delegation to node. Note it may take up to one hour to take effect "
caption={`Your current balance is: ${userBalance.balance?.printable_balance}`}
/>
{details && (
@@ -92,24 +92,22 @@ export const UndelegateForm = ({
render={() => (
<Autocomplete
disabled={isSubmitting}
getOptionDisabled={(opt) =>
pendingUndelegations?.some((item) => item.mix_identity === opt.node_identity) || false
}
options={delegations || []}
getOptionDisabled={(opt) => pendingUndelegations?.some((item) => item.mix_identity === opt) || false}
options={delegations?.map((d) => d.node_identity) || []}
renderOption={(props, opt) => (
<ListItem
{...props}
onClick={(e: React.MouseEvent<HTMLLIElement>) => {
setValue('identity', opt.node_identity);
setValue('identity', opt);
props.onClick!(e);
}}
disablePadding
disableGutters
>
<ListItemText
primary={opt.node_identity}
primary={opt}
secondary={
pendingUndelegations?.some((item) => item.mix_identity === opt.node_identity)
pendingUndelegations?.some((item) => item.mix_identity === opt)
? `Pending - Expected time of completion: ${
currentEndEpoch ? format(new Date(Number(currentEndEpoch) * 1000), 'HH:mm') : 'N/A'
}`