fix: Direct to contact page rather than mailto: link

closes #3265
This commit is contained in:
Tom Moor
2022-03-18 20:19:07 -07:00
parent dc9c45ef6c
commit ff49c507db
2 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ import * as React from "react";
import {
developersUrl,
changelogUrl,
mailToUrl,
feedbackUrl,
githubIssuesUrl,
} from "@shared/utils/urlHelpers";
import stores from "~/stores";
@@ -115,7 +115,7 @@ export const openFeedbackUrl = createAction({
section: NavigationSection,
iconInContextMenu: false,
icon: <EmailIcon />,
perform: () => window.open(mailToUrl()),
perform: () => window.open(feedbackUrl()),
});
export const openBugReportUrl = createAction({