Skip to content

Commit

Permalink
fix popover
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-torabiv committed Nov 27, 2024
1 parent 57c1dfe commit c1a8d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/shared/TcPopover/TcPopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
import React from 'react';
import { Popover, PopoverProps } from '@mui/material';

interface TcPopoverProps extends PopoverProps {
interface TcPopoverProps extends Omit<PopoverProps, 'content'> {
open: boolean;
anchorEl: HTMLButtonElement | null;
content: React.ReactNode;
onClose: () => void;
content: React.ReactNode;
}

const TcPopover = ({
Expand Down

0 comments on commit c1a8d79

Please sign in to comment.