Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/extension-web-ui/src/Popup/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import DefaultLogosMap from '@subwallet/extension-web-ui/assets/logo';
import SwLogosMap from '@subwallet/extension-web-ui/assets/subwallet';
import { BaseModal, PageWrapper } from '@subwallet/extension-web-ui/components';
import { EXTENSION_VERSION, SUPPORT_MAIL, TERMS_OF_SERVICE_URL, TWITTER_URL, WEB_BUILD_NUMBER, WEBSITE_URL, WIKI_URL } from '@subwallet/extension-web-ui/constants/common';
import { EXTENSION_VERSION, SUPPORT_MAIL, CONTACT_SUPPORT_URL, TERMS_OF_SERVICE_URL, TWITTER_URL, WEB_BUILD_NUMBER, WEBSITE_URL, WIKI_URL } from '@subwallet/extension-web-ui/constants/common';
import { ScreenContext } from '@subwallet/extension-web-ui/contexts/ScreenContext';
import { WebUIContext } from '@subwallet/extension-web-ui/contexts/WebUIContext';
import useNotification from '@subwallet/extension-web-ui/hooks/common/useNotification';
Expand Down Expand Up @@ -193,7 +193,7 @@ function Component ({ className = '' }: Props): React.ReactElement<Props> {
rightIcon: ArrowSquareOut,
title: t('Contact support'),
onClick: () => {
window.open(`${SUPPORT_MAIL}?subject=[WebApp - In-app support]`, '_self');
window.open(CONTACT_SUPPORT_URL, '_blank');
}
},
{
Expand Down
1 change: 1 addition & 0 deletions packages/extension-web-ui/src/constants/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const TELEGRAM_URL = 'https://t.me/subwallet';
export const TWITTER_URL = 'https://twitter.com/subwalletapp';
export const DISCORD_URL = 'https://discord.com/invite/vPCN4vdB8v';
export const SUPPORT_MAIL = 'mailto:support@subwallet.app';
export const CONTACT_SUPPORT_URL = 'https://support.subwallet.app';
export const EXTENSION_URL = 'https://subwallet.app/download.html';
export const CONTACT_US = 'https://t.me/subwallet';
export const ALL_KEY = 'all';
Expand Down