diff --git a/src/views/User/UserProfile/AsideUserProfile/index.tsx b/src/views/User/UserProfile/AsideUserProfile/index.tsx index 3c3bc349d0..58e2e410cd 100644 --- a/src/views/User/UserProfile/AsideUserProfile/index.tsx +++ b/src/views/User/UserProfile/AsideUserProfile/index.tsx @@ -37,7 +37,8 @@ import { SeedBadge, TraveloggersBadge, } from '../Badges' -import CircleWidget from '../CircleWidget' +// FEATURE IS SUNSETTING: circle entry on aside user profile is hidden +// import CircleWidget from '../CircleWidget' import DropdownActions from '../DropdownActions' import { FollowersDialog } from '../FollowersDialog' import { FollowingDialog } from '../FollowingDialog' @@ -114,7 +115,8 @@ export const AsideUserProfile = () => { } const badges = user.info.badges || [] - const circles = user.ownCircles || [] + // FEATURE IS SUNSETTING: circle entry on aside user profile is hidden + // const circles = user.ownCircles || [] const hasSeedBadge = badges.some((b) => b.type === 'seed') const hasArchitectBadge = badges.some((b) => b.type === 'architect') const hasGoldenMotorBadge = badges.some((b) => b.type === 'golden_motor') @@ -374,11 +376,12 @@ export const AsideUserProfile = () => { )} - {isInUserPage && ( + {/* FEATURE IS SUNSETTING: circle entry on aside user profile is hidden */} + {/* {isInUserPage && ( - )} + )} */} ) } diff --git a/src/views/User/UserProfile/index.tsx b/src/views/User/UserProfile/index.tsx index a06a4fcdce..9d0bcc82a6 100644 --- a/src/views/User/UserProfile/index.tsx +++ b/src/views/User/UserProfile/index.tsx @@ -28,7 +28,8 @@ import { UserProfileUserPublicQuery } from '~/gql/graphql' import UserTabs from '../UserTabs' import { Badges } from './Badges' import { BadgesDialog } from './BadgesDialog' -import CircleWidget from './CircleWidget' +// FEATURE IS SUNSETTING: circle entry on user profile is hidden +// import CircleWidget from './CircleWidget' import DropdownActions from './DropdownActions' import { FollowersDialog } from './FollowersDialog' import { FollowingDialog } from './FollowingDialog' @@ -102,7 +103,8 @@ export const UserProfile = () => { } const badges = user.info.badges || [] - const circles = user.ownCircles || [] + // FEATURE IS SUNSETTING: circle entry on user profile is hidden + // const circles = user.ownCircles || [] const hasSeedBadge = badges.some((b) => b.type === 'seed') const hasArchitectBadge = badges.some((b) => b.type === 'architect') const hasGoldenMotorBadge = badges.some((b) => b.type === 'golden_motor') @@ -306,12 +308,13 @@ export const UserProfile = () => {

-