Skip to content

Commit

Permalink
Use > 0 as requested in code review
Browse files Browse the repository at this point in the history
  • Loading branch information
danny6167 committed Jul 8, 2024
1 parent b72a489 commit 5772efd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const StartupContainer = () => {
)}
</TitledGreyBox>
</div>
{data.variables.length != 0 && <h3 css={tw`mt-8 mb-2 text-2xl`}>Variables</h3>}
{data.variables.length > 0 && <h3 css={tw`mt-8 mb-2 text-2xl`}>Variables</h3>}
<div css={tw`grid gap-8 md:grid-cols-2`}>
{data.variables.map((variable) => (
<VariableBox key={variable.envVariable} variable={variable} />
Expand Down

0 comments on commit 5772efd

Please sign in to comment.