Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hmalik88 committed Sep 10, 2024
1 parent bcfd622 commit 5b1c30f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ export const section: UIComponentFactory<SectionElement> = ({
element,
...params
}) => {
const { children, props } = box({ element, ...params } as unknown as UIComponentParams<BoxElement>);
const { children, props } = box({
element,
...params,
} as unknown as UIComponentParams<BoxElement>);
return {
element: 'Box',
children,
Expand All @@ -21,5 +24,5 @@ export const section: UIComponentFactory<SectionElement> = ({
backgroundColor: BackgroundColor.backgroundDefault,
borderRadius: BorderRadius.LG,
},
}
};
};

0 comments on commit 5b1c30f

Please sign in to comment.