utils.tsx 269 B

1234567891011
  1. import {t} from 'sentry/locale';
  2. export function getButtonHelpText(isIdpProvisioned: boolean = false) {
  3. if (isIdpProvisioned) {
  4. return t(
  5. "Membership to this team is managed through your organization's identity provider."
  6. );
  7. }
  8. return undefined;
  9. }