From fac6a6189d3707193a4da7ccfa589f556525f8b1 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sat, 12 Sep 2026 10:41:04 -0700 Subject: [PATCH] feat(support): add deep linking #support to open developer support modal automatically --- js/radar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/radar.js b/js/radar.js index c08cb6b..109ef41 100644 --- a/js/radar.js +++ b/js/radar.js @@ -1449,6 +1449,8 @@ showToast('🎉 Thank you for your contribution! You are now a Verified Supporter.'); }, 500); window.history.replaceState({}, document.title, window.location.pathname); + } else if (urlParams.get('modal') === 'support' || window.location.hash === '#support') { + setTimeout(openSupportModal, 300); } }