File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import { Col , Row } from 'antd' ;
3
- import { useTranslation } from 'react-i18next' ;
4
3
import { PageTitle } from '@app/components/common/PageTitle/PageTitle' ;
5
4
import { References } from '@app/components/common/References/References' ;
6
5
import { useResponsive } from '@app/hooks/useResponsive' ;
@@ -16,8 +15,6 @@ import * as S from './DashboardPage.styles';
16
15
const MedicalDashboardPage : React . FC = ( ) => {
17
16
const { isDesktop } = useResponsive ( ) ;
18
17
19
- const { t } = useTranslation ( ) ;
20
-
21
18
const desktopLayout = (
22
19
< Row >
23
20
< S . LeftSideCol xl = { 16 } xxl = { 17 } id = "desktop-content" >
@@ -79,7 +76,7 @@ const MedicalDashboardPage: React.FC = () => {
79
76
80
77
return (
81
78
< >
82
- < PageTitle > { t ( 'common.medical-dashboard' ) } </ PageTitle >
79
+ < PageTitle > NFT Dashboard </ PageTitle >
83
80
{ isDesktop ? desktopLayout : mobileAndTabletLayout }
84
81
</ >
85
82
) ;
You can’t perform that action at this time.
0 commit comments