Skip to content

Commit

Permalink
fix(ui): hide mini status badge if non-4K media status is unknown (#3346
Browse files Browse the repository at this point in the history
)
  • Loading branch information
danshilm committed Feb 20, 2023
1 parent 1e2c6f4 commit 50f06da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TitleCard/index.tsx
Expand Up @@ -141,7 +141,7 @@ const TitleCard = ({
: intl.formatMessage(globalMessages.tvshow)}
</div>
</div>
{currentStatus && (
{currentStatus && currentStatus !== MediaStatus.UNKNOWN && (
<div className="pointer-events-none z-40 flex items-center">
<StatusBadgeMini
status={currentStatus}
Expand Down

0 comments on commit 50f06da

Please sign in to comment.