@@ -28,7 +28,7 @@ type ConfirmableActionProps = React.ComponentProps<typeof ConfirmableAction>;
type CommonProps = Omit<
ConfirmableActionProps,
- 'onConfirm' | 'confirmText' | 'children' | 'stopPropagation' | 'priority' | 'children'
+ 'onConfirm' | 'confirmText' | 'children' | 'stopPropagation' | 'priority'
> & {
children: React.ReactChild;
title: string;
@@ -42,12 +42,7 @@ function walk({
value: Value;
} & Pick<
Props,
- | 'withAnnotatedText'
- | 'preserveQuotes'
- | 'jsonConsts'
- | 'meta'
- | 'maxDefaultDepth'
+ 'withAnnotatedText' | 'preserveQuotes' | 'jsonConsts' | 'meta' | 'maxDefaultDepth'
>) {
let i = 0;
@@ -93,7 +93,6 @@ export type BreadcrumbTypeDefault = {
| BreadcrumbType.INIT
| BreadcrumbType.SESSION
| BreadcrumbType.SYSTEM
- | BreadcrumbType.SESSION
| BreadcrumbType.TRANSACTION;
data?: Record<string, any>;
} & BreadcrumbTypeBase;