Skip to content

Commit

Permalink
fix: invert premium check
Browse files Browse the repository at this point in the history
  • Loading branch information
aalemayhu committed Nov 17, 2024
1 parent 2ecb67f commit 90dafd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/DownloadsPage/DownloadsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function DownloadsPage({ setError }: DownloadsPageProps) {
return (
<Container>
<EmptyDownloadsSection hasActiveJobs={unfinishedJob} uploads={uploads} />
{isPremium && (
{!isPremium && (
<div>
Free users can only download 100 cards at a time and only one
conversion at a time. If you trigger more than one conversion at a
Expand Down

0 comments on commit 90dafd3

Please sign in to comment.