Skip to content

Commit

Permalink
try fix react snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamsi committed Dec 14, 2024
1 parent cebed96 commit 422ddc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/components/Markdoc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@ export function Markdoc (props: { content: RenderableTreeNodes }) {
)
}

return render(props.content) as JSX.Element
return render(props.content) as React.JSX.Element
}
2 changes: 1 addition & 1 deletion docs/components/content/CustomerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Type } from '../primitives/Type'
import { type IconProps } from '../icons/util'

type CustomerCardProps = {
icon: (props: IconProps) => JSX.Element
icon: (props: IconProps) => React.JSX.Element
title: string
accessibleTitle?: string
} & HTMLAttributes<HTMLElement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function FilterPill ({ filter, field }: { filter: Filter, field: FieldMeta }) {
label: string
type: string
value: any
}) => JSX.Element
}) => React.JSX.Element
return (
<Fragment>
<Pill
Expand Down

0 comments on commit 422ddc9

Please sign in to comment.