From a2c524c9dac2212ad255ef729af95f6ad2520d19 Mon Sep 17 00:00:00 2001 From: Seena Nair <55585488+seenanair@users.noreply.github.com> Date: Fri, 18 Aug 2023 15:41:56 +0100 Subject: [PATCH] Fix for RT - #786229 --- src/components/Table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table.tsx b/src/components/Table.tsx index 7d27c0e66..dbdbacad3 100644 --- a/src/components/Table.tsx +++ b/src/components/Table.tsx @@ -55,7 +55,7 @@ type TableHeadProps = { fixed?: boolean; }; export const TableHead = ({ children, fixed = false }: TableHeadProps) => { - return {children}; + return {children}; }; export const TableHeader = ({ children, sortProps, allCapital = true, ...rest }: TableHeaderProps) => {