utils.tsx 308 B

1234567
  1. import type {BreadcrumbType} from 'sentry/types/breadcrumbs';
  2. import type {Extraction} from 'sentry/utils/replays/hooks/useExtractedCrumbHtml';
  3. export const getDomMutationsTypes = (actions: Extraction[]) =>
  4. Array.from(
  5. new Set<BreadcrumbType>(actions.map(mutation => mutation.crumb.type))
  6. ).sort();