removed comments

This commit is contained in:
Proddy
2022-04-04 21:43:08 +02:00
parent 08cae822f1
commit 51af4b32d2
3 changed files with 1 additions and 2 deletions

View File

@@ -19,7 +19,6 @@ const FirmwareFileUpload: FC<UploadFirmwareProps> = ({ uploadFirmware }) => {
my={2}
/>
<SingleUpload
// accept="application/octet-stream"
accept=".bin"
onDrop={uploadFile}
onCancel={cancelUpload}

View File

@@ -83,7 +83,6 @@ export function resetCustomizations(): AxiosPromise<void> {
return AXIOS.post('/resetCustomizations');
}
// EMS-ESP API calls
export function API(apiCall: APIcall): AxiosPromise<void> {
return AXIOS_API.post('/', apiCall);
}

View File

@@ -147,6 +147,7 @@ export interface DeviceEntity {
n: string; // name
s: string; // shortname
m: number; // mask
om?: number; // original mask before edits
w: boolean; // writeable
}