Skip to content

Commit

Permalink
fix(ui): correctly show quota display on tv request modal when only s…
Browse files Browse the repository at this point in the history
…eries quota is set
  • Loading branch information
sct committed Mar 24, 2021
1 parent e393b53 commit 3f1f85a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/RequestModal/TvRequestModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 3f1f85a

Please sign in to comment.