File tree 2 files changed +1
-4
lines changed
src/components/pages/office-page
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,7 @@ export const OfficePage = (props: OfficePageProps) => {
28
28
29
29
return (
30
30
< div className = { styles . officePage } >
31
- { officeNorgData && (
32
- < OfficePageHeader officeDetails = { officeNorgData } showTimeStamp = { false } />
33
- ) }
31
+ { officeNorgData && < OfficePageHeader officeDetails = { officeNorgData } /> }
34
32
{ officeNorgData && < OfficeDetails officeData = { officeNorgData } /> }
35
33
< div className = { classNames ( styles . content , styles . pageContent ) } >
36
34
< ComponentMapper componentProps = { page } pageProps = { props } />
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import { OfficeDetailsData } from 'types/content-props/office-details-props';
10
10
import style from './OfficePageHeader.module.scss' ;
11
11
12
12
type Props = {
13
- showTimeStamp ?: boolean ;
14
13
officeDetails : OfficeDetailsData ;
15
14
} ;
16
15
You can’t perform that action at this time.
0 commit comments