diff --git a/src/components/Footer/__tests__/Footer.test.tsx b/src/components/Footer/__tests__/Footer.test.tsx
index e45285386..9c7aba159 100644
--- a/src/components/Footer/__tests__/Footer.test.tsx
+++ b/src/components/Footer/__tests__/Footer.test.tsx
@@ -21,13 +21,14 @@ describe('Footer Component', () => {
render();
const telegramButton = screen.getByText(/Telegram/);
fireEvent.click(telegramButton);
- expect(window.open).toHaveBeenCalledWith('https://t.me/derivdotcomofficial', '_blank');
+ expect(window.open).toHaveBeenCalledWith('https://t.me/+g6FV5tFY1u9lZGE1', '_blank');
});
it('opens respective email in a new tab when email button is clicked', () => {
window.open = jest.fn();
render();
const emailButton = screen.getByText(/Send an email/);
+ expect(emailButton).toBeInTheDocument();
fireEvent.click(emailButton);
expect(window.open).toHaveBeenCalledWith('mailto:api-support@deriv.com', '_blank');
});
diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx
index 76763e254..2e13e27fe 100644
--- a/src/components/Footer/index.tsx
+++ b/src/components/Footer/index.tsx
@@ -193,7 +193,7 @@ const Footer = () => {
variant='outlined'
className={styles.PaddedButton}
onClick={() => {
- window.open('https://t.me/derivdotcomofficial', '_blank');
+ window.open('https://t.me/+g6FV5tFY1u9lZGE1', '_blank');
}}
>