Qualify CJS-only module imports

This commit is contained in:
Fedor Indutny
2025-09-19 13:05:51 -07:00
committed by GitHub
parent 140241b83f
commit 40eaf078cc
401 changed files with 1278 additions and 593 deletions

View File

@@ -8,7 +8,7 @@ import React, {
useRef,
useCallback,
} from 'react';
import { omit } from 'lodash';
import lodash from 'lodash';
import type { ListRowProps } from 'react-virtualized';
import type { LocalizerType, ThemeType } from '../../../../types/Util.js';
@@ -45,6 +45,8 @@ import { UsernameCheckbox } from '../../../conversationList/UsernameCheckbox.js'
import { PhoneNumberCheckbox } from '../../../conversationList/PhoneNumberCheckbox.js';
import { SizeObserver } from '../../../../hooks/useSizeObserver.js';
const { omit } = lodash;
export type StatePropsType = {
regionCode: string | undefined;
candidateContacts: ReadonlyArray<ConversationType>;