diff --git a/frontend/app/components/Client/ProfileSettings/ProfileSettings.js b/frontend/app/components/Client/ProfileSettings/ProfileSettings.js
index b1a563979..375e3ba8e 100644
--- a/frontend/app/components/Client/ProfileSettings/ProfileSettings.js
+++ b/frontend/app/components/Client/ProfileSettings/ProfileSettings.js
@@ -52,16 +52,17 @@ export default class ProfileSettings extends React.PureComponent {
-
-
{ isEnterprise && (
-
-
-
{ 'Tenant Key' }
-
{ 'For SSO (SAML) authentication.' }
+ <>
+
+
+
+
{ 'Tenant Key' }
+
{ 'For SSO (SAML) authentication.' }
+
+
-
-
+ >
)}
{ !isEnterprise && (
diff --git a/frontend/app/components/Client/Users/components/UserList/UserList.tsx b/frontend/app/components/Client/Users/components/UserList/UserList.tsx
index 7b289f7b5..cae5ffd43 100644
--- a/frontend/app/components/Client/Users/components/UserList/UserList.tsx
+++ b/frontend/app/components/Client/Users/components/UserList/UserList.tsx
@@ -66,7 +66,7 @@ function UserList(props: Props) {
editHandler={() => editHandler(user)}
generateInvite={() => userStore.generateInviteCode(user.userId)}
copyInviteCode={() => userStore.copyInviteCode(user.userId)}
- // isEnterprise={isEnterprise}
+ isEnterprise={isEnterprise}
/>
))}
diff --git a/frontend/app/components/Login/Login.js b/frontend/app/components/Login/Login.js
index b74c52fc7..8719edfc3 100644
--- a/frontend/app/components/Login/Login.js
+++ b/frontend/app/components/Login/Login.js
@@ -80,7 +80,7 @@ export default class Login extends React.Component {