Skip to content

Commit

Permalink
Merge branch 'master' into hemanth/create-vesting-account
Browse files Browse the repository at this point in the history
  • Loading branch information
Hemanthghs authored Oct 19, 2023
2 parents f467bd5 + 5ecefca commit 07affb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/multisig/bulk/UnDelegateForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function UnDelegateForm(props) {
useEffect(() => {
const data = [];

for (let i = 0; i < delegations.length; i++) {
for (let i = 0; i < delegations?.length; i++) {
if (validators.active[delegations[i].delegation.validator_address]) {
const temp = {
label:
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/multisig/tx/PageCreateTx.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ export const RenderDelegateMessage = (message, index, currency, onDelete) => {
</Typography>
<Typography variant="body2" color="text.primary" fontWeight={600}>
{parseBalance(
[message.value.amount[0]],
[message.value.amount],
currency.coinDecimals,
currency.coinMinimalDenom
)}
Expand Down

0 comments on commit 07affb1

Please sign in to comment.