diff --git a/package.json b/package.json index f3ec3a8e6b..501a92581a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temple-wallet", - "version": "1.19.5", + "version": "1.19.6", "private": true, "scripts": { "start-run": "cross-env TS_NODE_PROJECT=\"webpack/tsconfig.json\" webpack --watch --stats errors-warnings", diff --git a/src/app/templates/SendForm/index.tsx b/src/app/templates/SendForm/index.tsx index 7374939ba8..21c12491c5 100644 --- a/src/app/templates/SendForm/index.tsx +++ b/src/app/templates/SendForm/index.tsx @@ -32,7 +32,9 @@ const SendForm = memo(({ assetSlug = TEZ_TOKEN_SLUG }) => { () => { const sortedSlugs = Array.from(tokensSlugs).sort(tokensSortPredicate); - return !assetSlug || sortedSlugs.some(s => s === assetSlug) + if (!assetSlug || assetSlug === TEZ_TOKEN_SLUG) return [TEZ_TOKEN_SLUG, ...sortedSlugs]; + + return sortedSlugs.some(s => s === assetSlug) ? [TEZ_TOKEN_SLUG, ...sortedSlugs] : [TEZ_TOKEN_SLUG, assetSlug, ...sortedSlugs]; },