diff --git a/docs/src/components/pricing/PricingTable.tsx b/docs/src/components/pricing/PricingTable.tsx index 89aadfc21d04ae..25853dc8a81817 100644 --- a/docs/src/components/pricing/PricingTable.tsx +++ b/docs/src/components/pricing/PricingTable.tsx @@ -1088,7 +1088,7 @@ function StickyHead({ container, disableCalculation = false, }: { - container: React.MutableRefObject; + container: React.RefObject; disableCalculation?: boolean; }) { const [hidden, setHidden] = React.useState(true); diff --git a/docs/src/components/productMaterial/MaterialStyling.tsx b/docs/src/components/productMaterial/MaterialStyling.tsx index df868fd09ed7e3..fb1b0492176f27 100644 --- a/docs/src/components/productMaterial/MaterialStyling.tsx +++ b/docs/src/components/productMaterial/MaterialStyling.tsx @@ -64,7 +64,7 @@ const endLine = [37, 20, 12]; const scrollTo = [27, 10, 4]; export const useResizeHandle = ( - target: React.MutableRefObject, + target: React.RefObject, options?: { minWidth?: string; maxWidth?: string }, ) => { const { minWidth = '0px', maxWidth = '100%' } = options || {};