mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:11:48 +00:00
Fix a condition I negated by accident (#62763)
This commit is contained in:
parent
b024b8c9cf
commit
4a049d894e
@ -72,7 +72,7 @@ export const CodySubscriptionPage: React.FunctionComponent<CodySubscriptionPageP
|
||||
return null
|
||||
}
|
||||
|
||||
const isProUser = data.currentUser.codySubscription?.plan !== CodySubscriptionPlan.PRO
|
||||
const isProUser = data.currentUser.codySubscription?.plan === CodySubscriptionPlan.PRO
|
||||
|
||||
return (
|
||||
<>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user