department-of-veterans-affairs/vets-website

View on GitHub
src/applications/personalization/profile/util/notification-settings.js

Summary

Maintainability
A
0 mins
Test Coverage
import {
  selectVAPEmailAddress,
  selectVAPMobilePhone,
} from '~/platform/user/selectors';

const contactInfoSelectorByChannelType = {
  1: selectVAPMobilePhone,
  2: selectVAPEmailAddress,
};

export const getContactInfoSelectorByChannelType = channelType => {
  return contactInfoSelectorByChannelType[channelType];
};