From 228c639f4039fcb6868234fb58b94fa89cd690ac Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Fri, 31 Oct 2025 09:36:48 -0700 Subject: [PATCH] Fix Windows ARM64 --- src/app/layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4f76a9..926d82f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -257,6 +257,7 @@ export default function RootLayout ({ if (a === 'x86') return findUrl('windows-x86') if (a === 'x86_64') return findUrl('windows-x64') || findUrl('windows-x86') + if (a === 'aarch64') return findUrl('windows-arm64') } if (p === 'macos' || p === 'linux') {