diff --git a/frontend/app/components/shared/SessionSettings/components/CaptureRate.tsx b/frontend/app/components/shared/SessionSettings/components/CaptureRate.tsx index 2bc65ff94..97a6b78d6 100644 --- a/frontend/app/components/shared/SessionSettings/components/CaptureRate.tsx +++ b/frontend/app/components/shared/SessionSettings/components/CaptureRate.tsx @@ -147,7 +147,8 @@ function CaptureRate(props: Props) { export default connect((state: any) => ({ isAdmin: state.getIn(['user', 'account', 'admin']) || state.getIn(['user', 'account', 'superAdmin']), - isEnterprise: + isEnterprise: !document.location.href.includes('app.openreplay.com') && ( state.getIn(['user', 'account', 'edition']) === 'ee' || state.getIn(['user', 'authDetails', 'edition']) === 'ee' + ) }))(observer(CaptureRate));