From 990bef4d173e9200b750200102f2bc30711af2c8 Mon Sep 17 00:00:00 2001
From: AJ Jordan <alex@strugee.net>
Date: Tue, 13 Jun 2023 11:20:20 -0400
Subject: [PATCH] Fix desktop Element download link (#313)

The previous link now leads to a page that says "Contact Sales".
---
 src/open/clients/Element.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/open/clients/Element.js b/src/open/clients/Element.js
index e43199f..9787695 100644
--- a/src/open/clients/Element.js
+++ b/src/open/clients/Element.js
@@ -92,7 +92,7 @@ export class Element {
         switch (platform) {
             case Platform.iOS: return [new AppleStoreLink('vector', 'id1083446067')];
             case Platform.Android: return [new PlayStoreLink('im.vector.app'), new FDroidLink('im.vector.app')];
-            default: return [new WebsiteLink("https://element.io/get-started")];
+            default: return [new WebsiteLink("https://element.io/download")];
         }
     }
 
-- 
GitLab