Skip to content

Commit

Permalink
fix: typings
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmch committed Nov 1, 2023
1 parent adc0dc4 commit 4cc7547
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/SharePopover/SharePopover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,7 @@ export interface SharePopoverProps extends ShareListProps, Partial<SharePopoverD
}) => React.ReactElement;
}

type SharePopoverInnerProps = Omit<SharePopoverProps, keyof SharePopoverDefaultProps> &
Required<Pick<SharePopoverProps, keyof SharePopoverDefaultProps>>;

export const SharePopover = (props: SharePopoverInnerProps) => {
export const SharePopover = (props: SharePopoverProps) => {
const {
url,
title,
Expand Down

0 comments on commit 4cc7547

Please sign in to comment.