Skip to content

Commit

Permalink
Revert unintended minor testing change
Browse files Browse the repository at this point in the history
  • Loading branch information
kylorhall-atlassian committed Dec 18, 2024
1 parent 3f04d6d commit 5bcb62a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ describe('styled tagged template expression', () => {
props.isPrimary
? \`
background-color: \${({ isLoading }) => (isLoading ? colors.N20 : colors.N40)};
color: \${({ loading }) => (loading ? colors.N50 : colors.N10)};
color: \${({ loading: l }) => (l ? colors.N50 : colors.N10)};
border-color: \${(propz) => (propz.loading ? colors.N100 : colors.N200)};
\` : 'color: black'
};
Expand Down

0 comments on commit 5bcb62a

Please sign in to comment.