diff --git a/plugins/bazaar/src/components/CardContentFields/AboutField.tsx b/plugins/bazaar/src/components/CardContentFields/AboutField.tsx index 28c22bff37..e8c49bf4d7 100644 --- a/plugins/bazaar/src/components/CardContentFields/AboutField.tsx +++ b/plugins/bazaar/src/components/CardContentFields/AboutField.tsx @@ -38,8 +38,6 @@ const useStyles = makeStyles(theme => ({ /** * Props for {@link AboutField}. - * - * @public */ export interface AboutFieldProps { label: string; @@ -48,7 +46,6 @@ export interface AboutFieldProps { children?: React.ReactNode; } -/** @public */ export function AboutField(props: AboutFieldProps) { const { label, value, gridSizes, children } = props; const classes = useStyles();