Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nkhristinin committed Apr 12, 2024
1 parent 47eec14 commit c9deda4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export const ShowValueListModal = ({
}) => {
const [showModal, setShowModal] = useState(false);
const { canWriteIndex, canReadIndex, loading } = useListsPrivileges();
const isValueItemsListModalEnabled = useIsExperimentalFeatureEnabled('valueListItemsModalEnabled');
const isValueItemsListModalEnabled = useIsExperimentalFeatureEnabled(
'valueListItemsModalEnabled'
);

const onCloseModal = useCallback(() => setShowModal(false), []);
const onShowModal = useCallback(() => setShowModal(true), []);
Expand Down

0 comments on commit c9deda4

Please sign in to comment.