Skip to content

Commit

Permalink
fix(deps): update typescript-eslint monorepo to v7.18.0 (#570)
Browse files Browse the repository at this point in the history
* fix(deps): update typescript-eslint monorepo to v7.18.0

* fix: lint

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: chiol <[email protected]>
  • Loading branch information
renovate[bot] and chiol authored Oct 7, 2024
1 parent a1ced3d commit cc5563e
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 71 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;
150 changes: 81 additions & 69 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cc5563e

Please sign in to comment.