Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { EMAIL_VERIFY_REQUEST, EMAIL_VERIFY_STATE_RESET } from 'calypso/state/action-types';
import 'calypso/state/data-layer/wpcom/me/send-verification-email';
export const verifyEmail = ( { showGlobalNotices = false } = {} ) => ( {
type: EMAIL_VERIFY_REQUEST,
showGlobalNotices,
} );
export const resetVerifyEmailState = () => ( { type: EMAIL_VERIFY_STATE_RESET } );