fix minor flood without a backend error

pull/640/head
Michael Shamoon 2 years ago
parent 5d8b937e9c
commit 94af8044f1

@ -11,11 +11,11 @@ export default function Component({ service }) {
const { data: torrentData, error: torrentError } = useWidgetAPI(widget, "torrents"); const { data: torrentData, error: torrentError } = useWidgetAPI(widget, "torrents");
if (torrentError) { if (torrentError || !torrentData?.torrents) {
return <Container error={torrentError} />; return <Container error={torrentError ?? {message: "No torrent data returned"}} />;
} }
if (!torrentData) { if (!torrentData || !torrentData.torrents) {
return ( return (
<Container service={service}> <Container service={service}>
<Block label="flood.leech" /> <Block label="flood.leech" />

Loading…
Cancel
Save