diff --git a/src/components/ui/incident-banner.tsx b/src/components/ui/incident-banner.tsx index 983b6ab..5302cfa 100644 --- a/src/components/ui/incident-banner.tsx +++ b/src/components/ui/incident-banner.tsx @@ -71,7 +71,9 @@ export function IncidentBanner({ className }: IncidentBannerProps) {
- Your Gnosis Pay card is back up and running. + {affected && hasPreHackBalance + ? "Your Gnosis Pay card is coming back." + : "Your Gnosis Pay card is back up and running."}
{!affected && hasPreHackBalance && ( @@ -95,9 +97,14 @@ export function IncidentBanner({ className }: IncidentBannerProps) { )} {affected && hasPreHackBalance && ( -- We've restored your balance and issued you a new Gnosis Pay Safe. Your previous Safe is no longer secure. Do not use your old Safe address again: anything you send there will be lost. -
+ <> ++ We've issued you a new Gnosis Pay Safe because your previous Safe is no longer secure. Do not use your old Safe address again: anything you send there will be lost. +
++ Funds are now being restored and will appear on your balance by EOD Sunday, June 7th. +
+ > )} {affected && !hasPreHackBalance && ( diff --git a/tests/banners.spec.ts b/tests/banners.spec.ts index d0cdd5a..7a732f7 100644 --- a/tests/banners.spec.ts +++ b/tests/banners.spec.ts @@ -57,8 +57,10 @@ test.describe("Incident banner - 4 cases", () => { await setupBannerTest(page, OLD_SAFE_AFFECTED_WITH_BALANCE); const banner = page.getByTestId("incident-notice-banner"); await expect(banner).toBeVisible(); - await expect(banner).toContainText("Your Gnosis Pay card is back up and running."); - await expect(banner).toContainText("We've restored your balance"); + await expect(banner).toContainText("Your Gnosis Pay card is coming back."); + await expect(banner).toContainText( + "Funds are now being restored and will appear on your balance by EOD Sunday, June 7th.", + ); await expect(banner).toContainText("Do not use your old Safe address again"); });