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

@@ -35,16 +35,16 @@ export function twitterUrl(): string {
return "https://twitter.com/getoutline";
}
export function mailToUrl(): string {
return "mailto:hello@getoutline.com";
export function feedbackUrl(): string {
return "https://www.getoutline.com/contact";
}
export function developersUrl(): string {
return `https://www.getoutline.com/developers`;
return "https://www.getoutline.com/developers";
}
export function changelogUrl(): string {
return `https://www.getoutline.com/changelog`;
return "https://www.getoutline.com/changelog";
}
export function signin(service = "slack"): string {