Skip to content

Commit

Permalink
Merge pull request #6260 from gucal/master
Browse files Browse the repository at this point in the history
Fix: Build error
  • Loading branch information
gucal authored Mar 29, 2024
2 parents 75b9add + a05f489 commit 411f26a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/lib/datatable/RowRadioButton.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import { ColumnBase } from '../column/ColumnBase';
import { useMergeProps } from '../hooks/Hooks';
import { RadioButton } from '../radioButton/RadioButton';
import { RadioButton } from '../radiobutton/RadioButton';

export const RowRadioButton = React.memo((props) => {
const mergeProps = useMergeProps();
Expand Down
2 changes: 1 addition & 1 deletion components/lib/multistatecheckbox/MultiStateCheckbox.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as React from 'react';
import { ariaLabel, PrimeReactContext } from '../api/Api';
import { Checkbox } from '../checkbox/Checkbox';
import { useHandleStyle } from '../componentbase/ComponentBase';
import { useMergeProps, useMountEffect } from '../hooks/Hooks';
import { Tooltip } from '../tooltip/Tooltip';
import { classNames, DomHandler, IconUtils, ObjectUtils } from '../utils/Utils';
import { MultiStateCheckboxBase } from './MultiStateCheckboxBase';
import { Checkbox } from '../checkbox/checkbox';

export const MultiStateCheckbox = React.memo(
React.forwardRef((inProps, ref) => {
Expand Down

0 comments on commit 411f26a

Please sign in to comment.