Skip to content

Commit

Permalink
fix: made productions-length boolean instead of zero
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Apr 19, 2024
1 parent fed64bd commit bdc91b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/landing-page/productions-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const ProductionsList = () => {
</ProductionItem>
))}
</ProductionListContainer>
{productions.length && <ManageProductionButton />}
{!!productions.length && <ManageProductionButton />}
</>
);
};

0 comments on commit bdc91b1

Please sign in to comment.