From 4f4b08affb23a775212f76294d355ab691996a8a Mon Sep 17 00:00:00 2001 From: FTCHD <144691102+FTCHD@users.noreply.github.com> Date: Tue, 3 Feb 2026 00:40:31 +0700 Subject: [PATCH] shorter message update --- lib/tray.ts | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/lib/tray.ts b/lib/tray.ts index 1482255..04e9cdf 100644 --- a/lib/tray.ts +++ b/lib/tray.ts @@ -101,15 +101,12 @@ async function buildMenu() { id: 'issues', text: 'Issues?', action: async () => { - const confirmed = await ask( - 'Please open an issue on Github and we will get it sorted in less than 48 hours, no matter if you have a license or not.', - { - title: 'Sorry ):', - kind: 'info', - okLabel: 'Open Github', - cancelLabel: 'Cancel', - } - ) + const confirmed = await ask(`Please open an issue on Github and we'll get it sorted.`, { + title: 'Sorry ):', + kind: 'info', + okLabel: 'Open Github', + cancelLabel: 'Cancel', + }) if (confirmed) { await openUrl('https://github.com/rclone-ui/rclone-ui/issues') }