fix(ui): correctly show quota display on tv request modal when only series quota is set

pull/1271/head
sct 4 years ago
parent e393b53b29
commit 3f1f85a80e
No known key found for this signature in database
GPG Key ID: 06A50468C67E272F

@ -436,7 +436,7 @@ const TvRequestModal: React.FC<RequestModalProps> = ({
/>
</p>
)}
{(quota?.movie.limit ?? 0) > 0 && (
{(quota?.tv.limit ?? 0) > 0 && (
<QuotaDisplay
mediaType="tv"
quota={quota?.tv}

Loading…
Cancel
Save