From a6238a22dd1b432e0e7633dcde72bca05e38d25b Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Tue, 21 Jan 2025 22:06:36 +0700 Subject: [PATCH] fix: Correct index for Windows download button (#4500) --- docs/src/components/DropdownDownload/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/components/DropdownDownload/index.tsx b/docs/src/components/DropdownDownload/index.tsx index 26e0f49d6..c0cdfb73b 100644 --- a/docs/src/components/DropdownDownload/index.tsx +++ b/docs/src/components/DropdownDownload/index.tsx @@ -65,7 +65,7 @@ const DropdownDownload = ({ lastRelease }: Props) => { const userAgent = navigator.userAgent if (userAgent.includes('Windows')) { // windows user - setDefaultSystem(systems[2]) + setDefaultSystem(systems[1]) } else if (userAgent.includes('Linux')) { // linux user setDefaultSystem(systems[3])