Skip to content

Commit 99cda7a

Browse files
fix(nft dashboard): update page title
1 parent bb3b7c9 commit 99cda7a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/pages/DashboardPages/NftDashboardPage.tsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import { Col, Row } from 'antd';
3-
import { useTranslation } from 'react-i18next';
43
import { PageTitle } from '@app/components/common/PageTitle/PageTitle';
54
import { References } from '@app/components/common/References/References';
65
import { useResponsive } from '@app/hooks/useResponsive';
@@ -16,8 +15,6 @@ import * as S from './DashboardPage.styles';
1615
const MedicalDashboardPage: React.FC = () => {
1716
const { isDesktop } = useResponsive();
1817

19-
const { t } = useTranslation();
20-
2118
const desktopLayout = (
2219
<Row>
2320
<S.LeftSideCol xl={16} xxl={17} id="desktop-content">
@@ -79,7 +76,7 @@ const MedicalDashboardPage: React.FC = () => {
7976

8077
return (
8178
<>
82-
<PageTitle>{t('common.medical-dashboard')}</PageTitle>
79+
<PageTitle>NFT Dashboard</PageTitle>
8380
{isDesktop ? desktopLayout : mobileAndTabletLayout}
8481
</>
8582
);

0 commit comments

Comments
 (0)