From dde7b813b1b1659ee2ffd3d807dbed75742682fe Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Thu, 4 Dec 2025 14:20:23 -0800 Subject: [PATCH] feat: add flashing help links for ESP32 and nRF52 in BuildDownloadButton and ProfileFlash components --- src/components/BuildDownloadButton.tsx | 22 ++++++++++++++++++++++ src/pages/ProfileFlash.tsx | 21 +++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/src/components/BuildDownloadButton.tsx b/src/components/BuildDownloadButton.tsx index 2bf18dd..8180e75 100644 --- a/src/components/BuildDownloadButton.tsx +++ b/src/components/BuildDownloadButton.tsx @@ -69,6 +69,28 @@ export function BuildDownloadButton({ > Download {type === ArtifactType.Firmware ? 'firmware' : 'source'} + {type === ArtifactType.Firmware && ( +

+ Need help flashing?{' '} + + ESP32 + + {' '}and{' '} + + nRF52 + +

+ )} {error &&

{error}

} ) diff --git a/src/pages/ProfileFlash.tsx b/src/pages/ProfileFlash.tsx index 192d4a2..a97c896 100644 --- a/src/pages/ProfileFlash.tsx +++ b/src/pages/ProfileFlash.tsx @@ -241,6 +241,27 @@ export default function ProfileFlash() { > Download Firmware +

+ Need help flashing?{' '} + + [ESP32] + + {' '}and{' '} + + [nRF52] + + {' '}guides +

)}