diff --git a/packages/components/src/focal-point-picker/test/index.tsx b/packages/components/src/focal-point-picker/test/index.tsx index dde9ec8cb67e2..1eccced32c70a 100644 --- a/packages/components/src/focal-point-picker/test/index.tsx +++ b/packages/components/src/focal-point-picker/test/index.tsx @@ -10,8 +10,8 @@ import userEvent from '@testing-library/user-event'; import Picker from '..'; import type { FocalPointPickerProps } from '../types'; -type Log = { name: string; args: any[] }; -type EventLogger = ( name: string, args: any[] ) => void; +type Log = { name: string; args: unknown[] }; +type EventLogger = ( name: string, args: unknown[] ) => void; const props: FocalPointPickerProps = { onChange: jest.fn(),