Compare commits

..

1 Commits

Author SHA1 Message Date
Gregory Schier
d586ec5fb4 Remove canny-specific links 2024-07-29 11:50:00 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1899,7 +1899,7 @@ fn create_window(handle: &AppHandle, url: &str) -> WebviewWindow {
_ = webview_window
.app_handle()
.shell()
.open("https://yaak.canny.io", None)
.open("https://yaak.app/roadmap", None)
}
// Commands for development

View File

@@ -85,7 +85,7 @@ export function SettingsDropdown() {
label: 'Feedback',
leftSlot: <Icon icon="chat" />,
rightSlot: <Icon icon="externalLink" />,
onSelect: () => open('https://yaak.canny.io'),
onSelect: () => open('https://yaak.app/roadmap'),
},
{
key: 'changelog',

View File

@@ -35,5 +35,5 @@ export function Link({ href, children, className, ...other }: Props) {
}
export function FeedbackLink() {
return <Link href="https://yaak.canny.io">Feedback</Link>;
return <Link href="https://yaak.app/roadmap">Feedback</Link>;
}