Skip to content

Commit

Permalink
update getinputtokentype if-condition
Browse files Browse the repository at this point in the history
  • Loading branch information
lykalabrada committed Oct 19, 2023
1 parent 11d9a05 commit 9d8029c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ export function SendScreen({ route, navigation }: Props): JSX.Element {
const getInputTokenType = () => {
if (isEvmAddress) {
return "token";
} else if (token?.id === "0_unified") {
}
if (token?.id === "0_unified") {
return "utxo";
} else {
return "others";
}
return "others";
};
const { isConversionRequired, conversionAmount } = useConversion({
inputToken: {
Expand Down

0 comments on commit 9d8029c

Please sign in to comment.