diff --git a/src/status_im/contexts/wallet/send/routes/view.cljs b/src/status_im/contexts/wallet/send/routes/view.cljs index 83888fc54eeb..64466781cf8a 100644 --- a/src/status_im/contexts/wallet/send/routes/view.cljs +++ b/src/status_im/contexts/wallet/send/routes/view.cljs @@ -28,7 +28,7 @@ (defn view [{:keys [amount routes]}] (let [loading-suggested-routes? (rf/sub [:wallet/wallet-send-loading-suggested-routes?]) - candidates (:Candidates routes)] + candidates (:candidates routes)] (if (and (not loading-suggested-routes?) (not-empty candidates)) [rn/flat-list {:data candidates @@ -44,8 +44,8 @@ [route-item {:amount amount :status :default - :from-network (utils/id->network (get-in route [:From :chainId])) - :to-network (utils/id->network (get-in route [:To :chainId]))}])}] + :from-network (utils/id->network (get-in route [:from :chain-id])) + :to-network (utils/id->network (get-in route [:to :chain-id]))}])}] [rn/view {:style style/empty-container} (if loading-suggested-routes? [rn/activity-indicator] diff --git a/translations/en.json b/translations/en.json index 07b1f7656e1d..5aa0872e642c 100644 --- a/translations/en.json +++ b/translations/en.json @@ -2456,10 +2456,7 @@ "from-label": "From", "to-label": "To", "oops-wrong-word": "Oops! Wrong word", -<<<<<<< HEAD "time-in-mins": "{{minutes}} min", - "amount-with-currency-symbol": "{{symbol}} {{amount}}" -======= + "amount-with-currency-symbol": "{{symbol}} {{amount}}", "no-routes-found": "No routes found" ->>>>>>> 2ea1e4b1d (wallet: suggested routes list) }