Set header target to optional

This commit is contained in:
jeffvli 2023-01-02 18:08:19 -08:00
parent a3804808b4
commit 58827a1dcf

View file

@ -50,7 +50,7 @@ export const ScrollArea = forwardRef(({ children, ...props }: ScrollAreaProps, r
interface NativeScrollAreaProps {
children: React.ReactNode;
debugScrollPosition?: boolean;
pageHeaderProps?: PageHeaderProps & { offset?: any; target: any };
pageHeaderProps?: PageHeaderProps & { offset?: any; target?: any };
}
export const NativeScrollArea = forwardRef(