Skip to content

Commit

Permalink
Replace 'People' label with 'Accounts' in StarterPack
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwschultz authored Jan 5, 2025
1 parent e510e49 commit caac2ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/StarterPack/StarterPackScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,13 @@ function StarterPackScreenLoaded({
routeParams: StarterPackScreeProps['route']['params']
moderationOpts: ModerationOpts
}) {
const showPeopleTab = Boolean(starterPack.list)
const showAccountsTab = Boolean(starterPack.list)
const showFeedsTab = Boolean(starterPack.feeds?.length)
const showPostsTab = Boolean(starterPack.list)
const {_} = useLingui()

const tabs = [
...(showPeopleTab ? [_(msg`People`)] : []),
...(showAccountsTab ? [_(msg`Accounts`)] : []),
...(showFeedsTab ? [_(msg`Feeds`)] : []),
...(showPostsTab ? [_(msg`Posts`)] : []),
]
Expand Down

0 comments on commit caac2ed

Please sign in to comment.