diff --git a/E2E/Tests/Accounts/Register.spec.ts b/E2E/Tests/Accounts/Register.spec.ts index 42ba821cd9..9415024fb1 100644 --- a/E2E/Tests/Accounts/Register.spec.ts +++ b/E2E/Tests/Accounts/Register.spec.ts @@ -59,7 +59,7 @@ test.describe("Account Registration", () => { if (IS_BILLING_ENABLED) { await page.getByTestId("companyName").fill("sample"); await page.getByTestId("companyName").press("Tab"); - await page.getByTestId("companyPhoneNumber").fill("+15853641376"); + await page.getByTestId("companyPhoneNumber").fill("+1234567890"); await page.getByTestId("companyPhoneNumber").press("Tab"); } diff --git a/StatusPage/src/Pages/Subscribe/UpdateSubscription.tsx b/StatusPage/src/Pages/Subscribe/UpdateSubscription.tsx index ca296c7ddf..6e17c729e3 100644 --- a/StatusPage/src/Pages/Subscribe/UpdateSubscription.tsx +++ b/StatusPage/src/Pages/Subscribe/UpdateSubscription.tsx @@ -129,7 +129,7 @@ const SubscribePage: FunctionComponent = ( required: (model: FormValues) => { return model && Boolean(model.subscriberPhone); }, - placeholder: "+15853641376", + placeholder: "+11234567890", disabled: true, showIf: (model: FormValues) => { return model && Boolean(model.subscriberPhone);