Skip to content

Commit

Permalink
[web] Comment out badge section
Browse files Browse the repository at this point in the history
  • Loading branch information
junhoyeo committed Feb 13, 2023
1 parent 04bf6e2 commit 12558ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions apps/web/public/locales/ko/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,5 @@
"Generating...": "생성 중...",
"It might take some time...": "시간이 조금 걸릴 수 있습니다...",

"Crypto": "크립토",
"Badges": "배지"
"Crypto": "크립토"
}
6 changes: 3 additions & 3 deletions apps/web/src/dashboard/DashboardMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { WalletListSection } from './sections/WalletListSection';
enum DashboardTabType {
Crypto = 'Crypto',
NFTs = 'NFTs',
Badges = 'Badges',
// Badges = 'Badges',
}
const DASHBOARD_TAB_ITEMS = Object.values(DashboardTabType);

Expand Down Expand Up @@ -402,12 +402,12 @@ export const DashboardMain: React.FC<DashboardMainProps> = ({
)}
</AnimatedTab>

<AnimatedTab selected={currentTab === DashboardTabType.Badges}>
{/* <AnimatedTab selected={currentTab === DashboardTabType.Badges}>
<BadgeListSection
userId={user.id}
selected={currentTab === DashboardTabType.Badges}
/>
</AnimatedTab>
</AnimatedTab> */}
</DashboardContent>
</DashboardContentWrapper>
</DashboardWrapper>
Expand Down

0 comments on commit 12558ad

Please sign in to comment.