fixed error with URL launcher

Tanner Silva committed Feb 3, 2021 at 05:47 UTC 12d3c03a1ba373c135892a1ad20ba581eef699f2
1 file changed +1 -1
lib/view_model/trade_details_view_model.dart
+1 -1
@@ -96,7 +96,7 @@ abstract class TradeDetailsViewModelBase with Store {
96 title: "Track",
97 value: "https://changenow.io/exchange/txs/${trade.id.toString()}",
98 onTap: () {
99 - launch("https://www.blockchain.com/btc/tx/${tx.id}");
99 + launch("https://changenow.io/exchange/txs/${trade.id.toString()}");
100 }));
101 }
102