Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: flss experiment key updated #4956

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/api/ExperimentIdLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import experimentVersionFragment from '@/graphql/fragments/experimentVersion.gra
// Experiment assignments that will be passed in the X-Experiment Header
const targetIds = [
'EXP-ML-Service-Bandit-LendByCategory',
'EXP-FLSS-Ongoing-Sitewide'
'EXP-FLSS-Ongoing-Sitewide-2'
];

function buildExpHeaders(cache) {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Lend/LoanChannelCategoryControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ import { trackExperimentVersion } from '@/util/experiment/experimentUtils';

const defaultLoansPerPage = 12;

const FLSS_ONGOING_EXP_KEY = 'EXP-FLSS-Ongoing-Sitewide';
const FLSS_ONGOING_EXP_KEY = 'EXP-FLSS-Ongoing-Sitewide-2';

// Routes to show monthly good promo
const targetRoutes = [
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Lend/LoanSearchPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import fiveDollarsTest, { FIVE_DOLLARS_NOTES_EXP } from '@/plugins/five-dollars-
import KvPageContainer from '~/@kiva/kv-components/vue/KvPageContainer';
import KvMaterialIcon from '~/@kiva/kv-components/vue/KvMaterialIcon';

const FLSS_ONGOING_EXP_KEY = 'EXP-FLSS-Ongoing-Sitewide';
const FLSS_ONGOING_EXP_KEY = 'EXP-FLSS-Ongoing-Sitewide-2';
const CATEGORY_REDIRECT_EXP_KEY = 'category_filter_redirect';

const getHasEverLoggedIn = client => !!(client.readQuery({ query: hasEverLoggedInQuery })?.hasEverLoggedIn);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/LoanFinding/LoanFinding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ import experimentAssignmentQuery from '@/graphql/query/experimentAssignment.grap
import HandOrangeIcon from '@/assets/images/hand_orange.svg';

const prefetchedRecommendedLoansVariables = { pageLimit: 4, origin: FLSS_ORIGIN_LEND_BY_CATEGORY };
const FLSS_ONGOING_EXP_KEY = 'EXP-FLSS-Ongoing-Sitewide';
const FLSS_ONGOING_EXP_KEY = 'EXP-FLSS-Ongoing-Sitewide-2';
const THREE_LOANS_RECOMMENDED_ROW_EXP_KEY = 'lh_three_loans_recommended_row';
const FIVE_DOLLARS_BANNER_KEY = 'kvfivedollarsbanner';

Expand Down