Browse Source

console: fix download route async handling

Dax Raad 2 months ago
parent
commit
6f8746ab94
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/console/app/src/routes/download/index.tsx

+ 3 - 1
packages/console/app/src/routes/download/index.tsx

@@ -26,7 +26,9 @@ function CopyStatus() {
 }
 
 export default function Download() {
-  const release = createAsync(() => getLatestRelease())
+  const release = createAsync(() => getLatestRelease(), {
+    deferStream: true,
+  })
   const download = () => {
     const version = release()
     if (!version) return null