Skip to content

Commit

Permalink
Regression of additional container class name
Browse files Browse the repository at this point in the history
  • Loading branch information
origami-z committed May 9, 2024
1 parent 4e67db3 commit a504807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ag-grid-theme/src/dependencies/useAgGridHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function useAgGridHelpers({
mode: modeProp,
density: densityProp,
containerClassName,
}: AgGridHelpersProps): {
}: AgGridHelpersProps = {}): {
containerProps: HTMLAttributes<HTMLDivElement>;
agGridProps: AgGridReactProps;
isGridReady: boolean;
Expand Down Expand Up @@ -69,7 +69,7 @@ export function useAgGridHelpers({

return {
containerProps: {
className,
className: clsx(containerClassName, className),
style: { height: 500, width: 800 },
},
agGridProps: {
Expand Down

0 comments on commit a504807

Please sign in to comment.