mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-16 04:31:39 -07:00
Add time to expiration date (#1654)
* Push out expiration by a day for fast fix * Add timestampt to expiration - update snapshots * Remove timed alerts
This commit is contained in:
parent
c398fe8737
commit
ef46af00f8
4 changed files with 5 additions and 15 deletions
|
@ -20,8 +20,6 @@ import * as styles from './J40Header.module.scss';
|
|||
import * as COMMON_COPY from '../../data/copy/common';
|
||||
import {PAGES_ENDPOINTS} from '../../data/constants';
|
||||
|
||||
const isAlertValid = new Date < COMMON_COPY.ALERTS.EXPIRATION_DATE;
|
||||
|
||||
const J40Header = () => {
|
||||
const intl = useIntl();
|
||||
|
||||
|
@ -232,7 +230,7 @@ const J40Header = () => {
|
|||
</J40MainGridContainer>
|
||||
|
||||
{/* Alert */}
|
||||
{isAlertValid && <J40MainGridContainer>
|
||||
{<J40MainGridContainer>
|
||||
<Alert
|
||||
className={styles.alert}
|
||||
type="info"
|
||||
|
|
|
@ -8,12 +8,11 @@ import * as COMMON_COPY from '../../data/copy/common';
|
|||
|
||||
const RequestForInfo = () => {
|
||||
const intl = useIntl();
|
||||
const commentPeriodExpired = new Date < COMMON_COPY.ALERTS.EXPIRATION_DATE;
|
||||
|
||||
return (
|
||||
<SummaryBox className={styles.rfiBox} heading={intl.formatMessage(CONTACT_COPY.RFI_BOX.TITLE)}>
|
||||
<p>{CONTACT_COPY.RFI_BOX_BODY}</p>
|
||||
<p>{commentPeriodExpired && COMMON_COPY.ALERTS.ALERT_1_DESCRIPTION}</p>
|
||||
<p>{COMMON_COPY.ALERTS.ALERT_1_DESCRIPTION}</p>
|
||||
</SummaryBox>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue