diff --git a/interface/src/system/UploadFirmwareForm.tsx b/interface/src/system/UploadFirmwareForm.tsx index 2d7c860cc..97d7554ed 100644 --- a/interface/src/system/UploadFirmwareForm.tsx +++ b/interface/src/system/UploadFirmwareForm.tsx @@ -1,6 +1,6 @@ -import React, { Fragment } from 'react'; -import { SingleUpload } from '../components'; -import { Box } from '@material-ui/core'; +import React, { Fragment } from "react"; +import { SingleUpload } from "../components"; +import { Box } from "@material-ui/core"; interface UploadFirmwareFormProps { uploading: boolean; @@ -10,7 +10,6 @@ interface UploadFirmwareFormProps { } class UploadFirmwareForm extends React.Component { - handleDrop = (files: File[]) => { const file = files[0]; if (file) { @@ -23,13 +22,20 @@ class UploadFirmwareForm extends React.Component { return ( - Upload a new firmware file (.bin or .bin.gz) below to replace the existing firmware. + Upload a new firmware file (.bin or .bin.gz) below to replace the + existing firmware. +

This can take up to a minute. Wait until you see "Activating + new Firmware" and EMS-ESP will automatically restart.
- +
); } - } export default UploadFirmwareForm;