Skip to content

Commit d22a040

Browse files
committed
chore: lint:fix
1 parent 143e33e commit d22a040

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/components/deprecated/Popover/Popover.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ type ControlledPopoverProps = BasePopoverProps & {
6060
onOpenChange: (open: boolean) => void;
6161
};
6262

63-
export type PopoverProps = UncontrolledPopoverProps | ControlledPopoverProps;
63+
type PopoverProps = UncontrolledPopoverProps | ControlledPopoverProps;
6464

6565
/** @deprecated prefer `components.Popover` */
6666
export const Popover: FC<PopoverProps> = (props) => {
@@ -155,7 +155,7 @@ export const PopoverTrigger: FC<PopoverTriggerProps> = (props) => {
155155

156156
type Horizontal = "left" | "right";
157157

158-
export type PopoverContentProps = Omit<
158+
type PopoverContentProps = Omit<
159159
MuiPopoverProps,
160160
"open" | "onClose" | "anchorEl"
161161
> & {

0 commit comments

Comments
 (0)