Skip to content

Commit

Permalink
Fix bug where mapping field would show suggestions for destintion add…
Browse files Browse the repository at this point in the history
…ress field in convert or cross chain modal
  • Loading branch information
michaeltout committed Dec 11, 2024
1 parent bce34e0 commit 5c723b0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -667,9 +667,11 @@ const ConvertOrCrossChainSendForm = ({ setLoading, setModalHeight, updateSendFor
case SEND_MODAL_MAPPING_FIELD:
newSuggestionsBase = await processMappingSuggestionPaths(flatPaths, sendModal.coinObj);
setSuggestionBase(newSuggestionsBase);
break;
case SEND_MODAL_TO_ADDRESS_FIELD:
newSuggestionsBase = processSelfSuggestionPaths();
setSuggestionBase(newSuggestionsBase);
break;
default:
setSuggestionBase(newSuggestionsBase);
break;
Expand Down

0 comments on commit 5c723b0

Please sign in to comment.