Skip to content

Commit

Permalink
fix movies count in radarr widget
Browse files Browse the repository at this point in the history
  • Loading branch information
benphelps committed Sep 3, 2022
1 parent d94b3e8 commit e72efe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/services/widgets/service/radarr.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function Radarr({ service }) {
<Widget>
<Block label="Wanted" value={wanted.length} />
<Block label="Queued" value={queuedData.totalCount} />
<Block label="Movies" value={moviesData.length} />
<Block label="Movies" value={have.length} />
</Widget>
);
}

0 comments on commit e72efe7

Please sign in to comment.