We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 188c5d1 commit aa12498Copy full SHA for aa12498
app/components/FSInfo.tsx
@@ -14,7 +14,7 @@ export default function FSInfo() {
14
(a, b) => b.timestamp - a.timestamp,
15
)[0]
16
const isError = !!lastJob?.failedReason
17
- const isScanning = !isError && !lastJob?.returnvalue
+ const isScanning = lastJob && !lastJob?.returnvalue && !lastJob?.failedReason
18
19
useJobsRevalidator(scanJobs as Job[])
20
0 commit comments