Skip to content

Commit 699a41e

Browse files
authored
fix: fix Windows launcher download link
1 parent 3ca4fda commit 699a41e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Download/Download.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function Download() {
3939
let downloadUrl;
4040

4141
if (platform === "Win32") {
42-
downloadUrl = data.assets && data.assets[3].browser_download_url;
42+
downloadUrl = data.assets && data.assets[2].browser_download_url;
4343
srcLoc.href = downloadUrl;
4444
} else if (platform === "Linux x86_64") {
4545
downloadUrl = data.assets && data.assets[0].browser_download_url;

0 commit comments

Comments
 (0)