Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chiol committed Oct 7, 2024
1 parent 61a2f2f commit 058eba9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const ColumnSettingPopover: React.FC<IProps> = ({ fieldData, table }) => {
);
};

const StrictModeDroppable = ({ children, ...props }: DroppableProps) => {
const StrictModeDroppable = (props: DroppableProps) => {
const [enabled, setEnabled] = useState(false);

useEffect(() => {
Expand All @@ -170,7 +170,7 @@ const StrictModeDroppable = ({ children, ...props }: DroppableProps) => {

if (!enabled) return null;

return <Droppable {...props}>{children}</Droppable>;
return <Droppable {...props} />;
};

export default ColumnSettingPopover;

0 comments on commit 058eba9

Please sign in to comment.