react-code-dataset / wp-calypso /client /lib /emails /has-unused-mailbox-warning.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { accountHasWarningWithSlug } from './account-has-warning-with-slug';
import { EMAIL_WARNING_SLUG_UNUSED_MAILBOXES } from './email-provider-constants';
export function hasUnusedMailboxWarning( emailAccount ) {
return accountHasWarningWithSlug( EMAIL_WARNING_SLUG_UNUSED_MAILBOXES, emailAccount );
}