Skip to content

Commit

Permalink
[hotfix] wrong trial message shown in billing page (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
sijav authored Jul 19, 2024
1 parent 3f12571 commit d1c03ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function WorkspaceSettingsBillingPage() {
<Typography variant="h3">
<Trans>Billing</Trans>
</Typography>
{product_tier !== 'Trial' ? (
{product_tier === 'Trial' ? (
<Stack direction="row" justifyContent="center">
<Alert variant="outlined" severity="success">
<AlertTitle fontSize={20}>
Expand Down

0 comments on commit d1c03ed

Please sign in to comment.