From 9538168597129094ce73cabc789babd553b69dbb Mon Sep 17 00:00:00 2001 From: webadderall <131426131+webadderall@users.noreply.github.com> Date: Sat, 4 Apr 2026 13:08:05 +1100 Subject: [PATCH] export tutorial help link helpers --- src/components/video-editor/TutorialHelp.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/video-editor/TutorialHelp.tsx b/src/components/video-editor/TutorialHelp.tsx index 9b4a7709..fbfa6461 100644 --- a/src/components/video-editor/TutorialHelp.tsx +++ b/src/components/video-editor/TutorialHelp.tsx @@ -15,7 +15,7 @@ import { formatBinding, SHORTCUT_ACTIONS, SHORTCUT_LABELS } from "@/lib/shortcut import { formatShortcut } from "@/utils/platformUtils"; import { toast } from "sonner"; -const RECORDLY_ISSUES_URL = "https://github.com/webadderall/Recordly/issues"; +export const RECORDLY_ISSUES_URL = "https://github.com/webadderall/Recordly/issues"; const RECORDLY_DISCORD_URL = "https://discord.gg/FcfNN4S9m"; const RECORDLY_X_URL = "https://x.com/webadderall"; const CONTACT_EMAIL = "youngchen3442@gmail.com"; @@ -30,7 +30,7 @@ function DiscordIcon(props: React.SVGProps) { ); } -async function openExternalLink(url: string, errorMessage: string) { +export async function openExternalLink(url: string, errorMessage: string) { try { const result = await window.electronAPI.openExternalUrl(url); if (!result.success) {