File size: 308 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
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 );
}
|