From 8667d78eb88bed52bb8915e2bcdbe34adcc18051 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Hofsta=CC=88tter?= Date: Tue, 19 May 2026 15:23:36 +0200 Subject: [PATCH] feat: add underpowering alert on Connect Your Device page Warns users not to connect both ports to the same computer, as this can underpower the device and lead to incomplete flashing. Co-Authored-By: Claude Sonnet 4.6 --- src/app/Flash.jsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/app/Flash.jsx b/src/app/Flash.jsx index 18a650b6..0ab59729 100644 --- a/src/app/Flash.jsx +++ b/src/app/Flash.jsx @@ -426,7 +426,7 @@ function ConnectInstructions({ deviceType, onNext }) { const isCommaFour = deviceType === DeviceType.COMMA_4 return ( -
+

Connect your device

Follow these steps to prepare your device for flashing

@@ -471,6 +471,15 @@ function ConnectInstructions({ deviceType, onNext }) { > Next + +
+ + + +

+ Avoid connecting both ports to the same computer. This can underpower the device and lead to incomplete flashing. It is recommended to use a power brick for port 2. +

+
) }