Update component.jsx
This commit is contained in:
parent
9662c29374
commit
08f56b54f5
1 changed files with 1 additions and 3 deletions
|
@ -11,14 +11,12 @@ export default function Component({ service }) {
|
|||
const { data: grabsData, error: grabsError } = useWidgetAPI(widget, "indexerstats");
|
||||
|
||||
if (grabsError) {
|
||||
const finalError = indexersError ?? grabsError;
|
||||
return <Container error={finalError} />;
|
||||
return <Container error={grabsError} />;
|
||||
}
|
||||
|
||||
if (!grabsData) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="prowlarr.enableIndexers" />
|
||||
<Block label="prowlarr.numberOfGrabs" />
|
||||
<Block label="prowlarr.numberOfQueries" />
|
||||
<Block label="prowlarr.numberOfFailGrabs" />
|
||||
|
|
Loading…
Add table
Reference in a new issue