Skip to content

Commit

Permalink
refactor: remove mainnet indicator from projects list
Browse files Browse the repository at this point in the history
Completes JOB-730
  • Loading branch information
johnshift committed Aug 30, 2024
1 parent f60518c commit ac02c2e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/projects/utils/create-project-info-tag-props.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { formatNumber } from '@/shared/utils/format-number';
import { getEnabledTagsConfig } from '@/shared/utils/get-enabled-tags-config';
import { ActiveUsersIcon } from '@/shared/components/icons/active-users-icon';
import { CategoryIcon } from '@/shared/components/icons/category-icon';
import { MainnetIcon } from '@/shared/components/icons/mainnet-icon';
import { MonthlyVolumeIcon } from '@/shared/components/icons/monthly-volume-icon';
import { RevenueIcon } from '@/shared/components/icons/revenue-icon';
import { TvlIcon } from '@/shared/components/icons/tvl-icon';
Expand All @@ -15,7 +14,6 @@ export const createProjectInfoTagProps = (
) => {
const {
category,
isMainnet,
tvl,
monthlyVolume,
monthlyActiveUsers,
Expand All @@ -34,13 +32,6 @@ export const createProjectInfoTagProps = (
});
}

if (isMainnet && enabledTagsConfig.isMainnet) {
tags.push({
text: 'Mainnet',
icon: <MainnetIcon />,
});
}

if (tvl && enabledTagsConfig.tvl) {
tags.push({
text: `TVL: $${formatNumber(tvl)}`,
Expand Down

0 comments on commit ac02c2e

Please sign in to comment.