diff --git a/web/common/src/components/LoadingContainer/LoadingContainer.tsx b/web/common/src/components/LoadingContainer/LoadingContainer.tsx index af21ddd04c..4698266e4e 100644 --- a/web/common/src/components/LoadingContainer/LoadingContainer.tsx +++ b/web/common/src/components/LoadingContainer/LoadingContainer.tsx @@ -15,13 +15,16 @@ export const LoadingContainer = React.forwardRef< HTMLDivElement, LoadingContainerProps >( - ({ - isLoading = true, - side = 'left', - message, - children, - className, - }: LoadingContainerProps) => { + ( + { + isLoading = true, + side = 'left', + message, + children, + className, + }: LoadingContainerProps, + ref, + ) => { function renderLoading() { return ( <> @@ -33,6 +36,7 @@ export const LoadingContainer = React.forwardRef< return isLoading ? (