// The isValidOrgSlug function should match the behaviour of this regular expression: ^[a-zA-Z0-9][a-zA-Z0-9-]*(? 0 && !orgSlug.startsWith('-') && !orgSlug.endsWith('-') && !orgSlug.includes('_') && ORG_SLUG_REGEX.test(orgSlug) ); } export default isValidOrgSlug;