Skip to content

Commit

Permalink
fix: Fix a data retention bug when sending tokens from Asset Details …
Browse files Browse the repository at this point in the history
…page (#204)
  • Loading branch information
jinoosss committed Jun 15, 2023
1 parent 3a26009 commit 1619f80
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,6 @@ export const TokenDetails = () => {
const DepositButtonClick = () => navigate(RoutePath.Deposit, { state: { type: 'token', tokenMetainfo: tokenBalance } });
const SendButtonClick = () => {
clearHistoryData(RoutePath.TransferInput);
navigate(RoutePath.TransferInput, {
state: {
tokenBalance,
}
});
navigate(RoutePath.TransferInput, { state: { tokenBalance } })
};
const etcButtonClick = () => setEtcClicked((prev: boolean) => !prev);
Expand Down

0 comments on commit 1619f80

Please sign in to comment.