diff --git a/webapp/src/utils/muiUtils.ts b/webapp/src/utils/muiUtils.ts index 0d852cb3b2..e99d875109 100644 --- a/webapp/src/utils/muiUtils.ts +++ b/webapp/src/utils/muiUtils.ts @@ -4,6 +4,6 @@ export function mergeSxProp( target: SxProps = {}, source: SxProps = [], ): SxProps { - // https://mui.com/system/the-sx-prop/#passing-sx-prop + // https://mui.com/system/getting-started/the-sx-prop/#passing-the-sx-prop return [target, ...(Array.isArray(source) ? source : [source])]; }