diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd269a1..0d64cce 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -751,34 +751,18 @@ export default function RootLayout ({ {getVersionInfo(v.version)?.displayName}

- {v.failed ? ( + {v.failed || v.queued ? (
- - Download failed - - -
- ) : v.queued ? ( -
- - {queuePosition === 0 + {v.failed + ? 'Download failed' + : queuePosition === 0 ? 'Starting soon...' : `Queued (Position ${ queuePosition + 1 @@ -803,13 +787,18 @@ export default function RootLayout ({ Remove
- ) : v.hash_checking ? ( - - Checking hash... - - ) : v.finishing ? ( - - Finishing... + ) : v.hash_checking || v.finishing ? ( + + {v.hash_checking + ? 'Checking hash' + : 'Finishing'} + ... ) : (