We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1241a0 commit 82dc649Copy full SHA for 82dc649
1 file changed
apps/sim/ee/access-control/components/access-control.tsx
@@ -1163,7 +1163,9 @@ export function AccessControl() {
1163
if (!canManage) {
1164
return (
1165
<div className='flex h-full items-center justify-center text-[var(--text-muted)] text-sm'>
1166
- Only organization admins on Enterprise plans can manage Access Control settings.
+ {!organizationId
1167
+ ? "Access Control applies to organization workspaces. This workspace isn't part of an organization."
1168
+ : 'Only organization admins on Enterprise plans can manage Access Control settings.'}
1169
</div>
1170
)
1171
}
0 commit comments