From 78d7ae9d235a573ddd367000e6e75869e8e1280a Mon Sep 17 00:00:00 2001 From: Samir Kamal <1954121+skamril@users.noreply.github.com> Date: Tue, 18 Jun 2024 09:22:53 +0200 Subject: [PATCH] style(ui-utils): update a comment in muiUtils --- webapp/src/utils/muiUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])]; }