Skip to content

Commit

Permalink
Fix last step if approval already complete
Browse files Browse the repository at this point in the history
  • Loading branch information
gpxl-dev committed Nov 27, 2023
1 parent 1858834 commit e6d6e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/staking/MigrationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export const MigrationModal = ({}: {}) => {
hash,
});
setIsMining([false, false, false]);
setTransactionHashes((prev) => [...prev, hash]);
setTransactionHashes((prev) => [prev[0], prev[1], hash]);
setCurrentStep(3);
},
});
Expand Down

0 comments on commit e6d6e15

Please sign in to comment.