export interface CreditTabsProps {
  name: string;
  tab_action: string;
  featureFlagKey: string;
}

export const tabs: CreditTabsProps[] = [
  {
    name: 'TransUnion',
    tab_action: 'client_tu_score',
    featureFlagKey: 'credit_score_transunion_card_show_flag',
  },
  {
    name: 'Equifax',
    tab_action: 'client_efx_score',
    featureFlagKey: 'credit_scores_equifax_card_show_flag',
  },
  {
    name: 'Experian',
    tab_action: 'client_exp_score',
    featureFlagKey: 'credit_scores_experian_card_show_flag',
  },
];