Skip to content

Commit 80f150f

Browse files
committed
Merge branch 'master' into languages-2
2 parents 49a4f2e + 5fbfcb2 commit 80f150f

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/components/pages/office-page/OfficePage.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ export const OfficePage = (props: OfficePageProps) => {
2828

2929
return (
3030
<div className={styles.officePage}>
31-
{officeNorgData && (
32-
<OfficePageHeader officeDetails={officeNorgData} showTimeStamp={false} />
33-
)}
31+
{officeNorgData && <OfficePageHeader officeDetails={officeNorgData} />}
3432
{officeNorgData && <OfficeDetails officeData={officeNorgData} />}
3533
<div className={classNames(styles.content, styles.pageContent)}>
3634
<ComponentMapper componentProps={page} pageProps={props} />

src/components/pages/office-page/office-page-header/OfficePageHeader.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { OfficeDetailsData } from 'types/content-props/office-details-props';
1010
import style from './OfficePageHeader.module.scss';
1111

1212
type Props = {
13-
showTimeStamp?: boolean;
1413
officeDetails: OfficeDetailsData;
1514
};
1615

0 commit comments

Comments
 (0)