Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import PropTypes from 'prop-types';
import { useEffect } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { getCurrentUserLocale } from 'calypso/state/current-user/selectors';
import { fetchJITM } from 'calypso/state/jitm/actions';
export default function QueryJITM( { siteId, messagePath, searchQuery } ) {
const locale = useSelector( getCurrentUserLocale );
const dispatch = useDispatch();
useEffect( () => {
dispatch( fetchJITM( siteId, messagePath, searchQuery, locale ) );
}, [ dispatch, siteId, messagePath, searchQuery, locale ] );
return null;
}
QueryJITM.propTypes = {
siteId: PropTypes.number.isRequired,
messagePath: PropTypes.string.isRequired,
};