remove public comments

Signed-off-by: Jonathan Roebuck <jroebuck@spotify.com>
This commit is contained in:
Jonathan Roebuck
2024-12-12 16:14:04 +00:00
parent 4b264730f4
commit e8778469eb
2 changed files with 1 additions and 3 deletions
@@ -19,7 +19,7 @@ import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { CatalogAutocomplete } from './CatalogAutocomplete';
describe('Autocomplete', () => {
describe('CatalogAutocomplete', () => {
const user = userEvent.setup();
const mockOptions = ['Option 1', 'Option 2', 'Option 3'];
@@ -124,7 +124,6 @@ const PaperComponent = (props: PaperProps) => (
<Paper {...props} elevation={8} />
);
/** @public */
export type CatalogAutocompleteProps<
T,
Multiple extends boolean | undefined = undefined,
@@ -146,7 +145,6 @@ export type CatalogAutocompleteProps<
>['renderInput'];
};
/** @public */
export function CatalogAutocomplete<
T,
Multiple extends boolean | undefined = undefined,