shouldUseLegacyRoute.tsx 288 B

12345678
  1. import {OrganizationSummary} from 'sentry/types';
  2. function shouldUseLegacyRoute(organization: OrganizationSummary) {
  3. const {organizationUrl} = organization.links;
  4. return !organizationUrl || !organization.features.includes('customer-domains');
  5. }
  6. export default shouldUseLegacyRoute;