Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Fix #16852 - Update support link for BETA (#16853)" #25871

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 6 additions & 5 deletions ui/pages/home/beta/beta-home-footer.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ const BetaHomeFooter = () => {
const t = useI18nContext();
const trackEvent = useContext(MetaMetricsContext);

const SUPPORT_LINK =
'https://docs.google.com/forms/d/e/1FAIpQLSfpkpeVMvfFw_1CWzrs5M3TEqE9VPMSspLPJgk1u4ZyUkQRbg/viewform?usp=sharing';

return (
<>
<a
target="_blank"
rel="noopener noreferrer"
href={SUPPORT_LINK}
href={SUPPORT_REQUEST_LINK}
onClick={() => {
trackEvent(
{
Expand All @@ -42,7 +39,11 @@ const BetaHomeFooter = () => {
{t('needHelpSubmitTicket')}
</a>{' '}
|{' '}
<a href={SUPPORT_LINK} target="_blank" rel="noopener noreferrer">
<a
href="https://community.metamask.io/c/metamask-beta"
Copy link
Contributor

@seaona seaona Jul 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this the expected link here? I'm seeing Oops! That page doesn’t exist or is private

Screenshot from 2024-07-17 09-28-46

target="_blank"
rel="noopener noreferrer"
>
{t('needHelpFeedback')}
</a>
</>
Expand Down
Loading