Skip to content

Commit

Permalink
Update static banner warning message text
Browse files Browse the repository at this point in the history
  • Loading branch information
caleballdrin committed Nov 2, 2023
1 parent 4a91583 commit 1ed981b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/components/Shared/staticBanner/StaticBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,23 @@ export const StaticBanner: React.FC<StaticBannerProps> = ({
return !loading && nonCruUser ? (
<Alert severity={severity}>
{t(
`Due to data privacy regulations and costs, Cru will no longer be able to host MPDX data for non-Cru/non-CCCI ministries. This means that MPDX will no longer be available for use outside of Cru/CCCI. Your data in MPDX will be deleted if you don't export it from MPDX by January 31, 2024 or let us know why you might need an extension. For more information and to take action, `,
`Due to data privacy regulations and costs, Cru will no longer be able to host MPDX data for non-Cru/non-CCCI ministries. `,
)}
<b>
{t(
`Your data in MPDX will be deleted if you don’t export from MPDX by January 31, 2024,`,
)}
</b>
{t(
` or let us know why you might need an extension. For more information and to take action, read `,
)}
<Link
data-testid="nonCruOrgReminder"
href="https://docs.google.com/document/d/18TnQGmshg71l3J9Gd-4ltjIjhK2PLtuG_Vc94bt6xzE/"
target="_blank"
rel="noreferrer"
>
{t('read this communication.')}
{t('this communication.')}
</Link>
</Alert>
) : null;
Expand Down

0 comments on commit 1ed981b

Please sign in to comment.