From 0166176dc004d6c234d969118f98f3b22f84d19c Mon Sep 17 00:00:00 2001 From: Max Mykal Date: Thu, 11 Sep 2025 15:07:08 -0700 Subject: [PATCH] fix missing ref --- .../LoadingContainer/LoadingContainer.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) 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 ? (