diff options
Diffstat (limited to 'src/state/models/suggested-actors-view.ts')
-rw-r--r-- | src/state/models/suggested-actors-view.ts | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/src/state/models/suggested-actors-view.ts b/src/state/models/suggested-actors-view.ts index 4764f581e..33c73b4e1 100644 --- a/src/state/models/suggested-actors-view.ts +++ b/src/state/models/suggested-actors-view.ts @@ -4,26 +4,12 @@ import shuffle from 'lodash.shuffle' import {RootStoreModel} from './root-store' import {cleanError} from 'lib/strings/errors' import {bundleAsync} from 'lib/async/bundle' -import { - DEV_SUGGESTED_FOLLOWS, - PROD_SUGGESTED_FOLLOWS, - STAGING_SUGGESTED_FOLLOWS, -} from 'lib/constants' +import {SUGGESTED_FOLLOWS} from 'lib/constants' const PAGE_SIZE = 30 export type SuggestedActor = Profile.ViewBasic | Profile.View -const getSuggestionList = ({serviceUrl}: {serviceUrl: string}) => { - if (serviceUrl.includes('localhost')) { - return DEV_SUGGESTED_FOLLOWS - } else if (serviceUrl.includes('staging')) { - return STAGING_SUGGESTED_FOLLOWS - } else { - return PROD_SUGGESTED_FOLLOWS - } -} - export class SuggestedActorsViewModel { // state pageSize = PAGE_SIZE @@ -126,9 +112,9 @@ export class SuggestedActorsViewModel { try { // clone the array so we can mutate it const actors = [ - ...getSuggestionList({ - serviceUrl: this.rootStore.session.currentSession?.service || '', - }), + ...SUGGESTED_FOLLOWS( + this.rootStore.session.currentSession?.service || '', + ), ] // fetch the profiles in chunks of 25 (the limit allowed by `getProfiles`) |