Skip to content

Commit f053c0d

Browse files
authored
fix: popover props type (#1728)
1 parent d59fb29 commit f053c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/ui/popover/popover.component.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ type PopoverModalProps = Omit<ModalProps, ' children'>;
3636

3737
export interface PopoverProps extends PopoverViewProps, PopoverModalProps, RNModalProps {
3838
children?: React.ReactElement;
39-
placement: PopoverPlacement;
39+
placement?: PopoverPlacement | string;
4040
// eslint-disable-next-line @typescript-eslint/no-explicit-any
4141
anchor: RenderFCProp<any>;
4242
fullWidth?: boolean;

0 commit comments

Comments
 (0)