Skip to content

Commit

Permalink
Fix for RT - #786229
Browse files Browse the repository at this point in the history
  • Loading branch information
seenanair committed Aug 18, 2023
1 parent 5bbbda3 commit a2c524c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type TableHeadProps = {
fixed?: boolean;
};
export const TableHead = ({ children, fixed = false }: TableHeadProps) => {
return <thead className={`${fixed ? 'sticky top-0 z-20' : ''}`}>{children}</thead>;
return <thead className={`${fixed ? 'sticky top-0' : ''}`}>{children}</thead>;
};

export const TableHeader = ({ children, sortProps, allCapital = true, ...rest }: TableHeaderProps) => {
Expand Down

0 comments on commit a2c524c

Please sign in to comment.