Skip to content

Commit

Permalink
fix: remove isEditing from not active status
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiusj committed Aug 4, 2023
1 parent 5e51eee commit c6d43ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function Performance({
return (
<Card.Section title={i18n.translate('title', I18N_SCOPE)}>
<VerticalStack>
{(isEditing || status === DiscountStatus.Scheduled) && (
{status === DiscountStatus.Scheduled && (
<Text as="span" color="subdued">
{i18n.translate('notActive', I18N_SCOPE)}
</Text>
Expand Down

0 comments on commit c6d43ac

Please sign in to comment.