From c96313edda98b21e3b233a54688a1a5a6ab4c2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 2 Jun 2020 22:25:59 +0200 Subject: [PATCH] fix use of legacy get.status.im domain MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- src/cljs/status_dapp/views.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cljs/status_dapp/views.cljs b/src/cljs/status_dapp/views.cljs index dca713e..ba48678 100644 --- a/src/cljs/status_dapp/views.cljs +++ b/src/cljs/status_dapp/views.cljs @@ -10,7 +10,7 @@ [react/view {:style {:flex 1 :padding 10 :align-items :center :justify-content :center}} [react/text {:style {:font-weight :bold}} "Can't find web3 library"] - [:a {:href "https://get.status.im/browse/status-im.github.io/dapp/"} "Open in Status"]]) + [:a {:href "https://join.status.im/b/status-im.github.io/dapp/"} "Open in Status"]]) (defview contract-panel [accounts] (letsubs [message [:get :message] @@ -180,7 +180,7 @@ [ui/button "Install principles extension" (fn [] - (let [uri "https://get.status.im/extension/ipfs@QmcfsYnFvKXApcFTCNttpQvQKYxiMCqVx5MvsocFyrr2KA"] + (let [uri "https://join.status.im/extension/ipfs@QmcfsYnFvKXApcFTCNttpQvQKYxiMCqVx5MvsocFyrr2KA"] (if (and web3 (.-currentProvider web3) (.-installExtension (.-currentProvider web3))) (.installExtension (.-currentProvider web3) uri) (when (exists? js/window.ethereum.status) @@ -249,4 +249,4 @@ (case view-id :web3 [web3-view] :dapp-store [dapp-store-view] - [no-web3]))) \ No newline at end of file + [no-web3])))