From 61710e2ac6c4936e971c6c151ec3aad83187b0d5 Mon Sep 17 00:00:00 2001 From: John Jeong Date: Fri, 11 Jul 2025 18:44:19 -0700 Subject: [PATCH] feat(left-sidebar): update settings button link The changes update the link in the settings button to point to the "Talk to Founders" page on the Cal.com website. This change is intended to provide users with a more direct way to contact the Hyprnote team. --- .../src/components/left-sidebar/top-area/settings-button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/components/left-sidebar/top-area/settings-button.tsx b/apps/desktop/src/components/left-sidebar/top-area/settings-button.tsx index 51a0db3632..01104aa4d8 100644 --- a/apps/desktop/src/components/left-sidebar/top-area/settings-button.tsx +++ b/apps/desktop/src/components/left-sidebar/top-area/settings-button.tsx @@ -56,7 +56,7 @@ export function SettingsButton() { const handleClickTalkToFounders = async () => { setOpen(false); try { - await openURL("https://hyprnote.canny.io/others-general-feedback/p/talk-to-founders"); + await openURL("https://cal.com/team/hyprnote/intro"); } catch (error) { console.error("Failed to open talk to founders:", error); }