diff --git a/interface/src/app/main/Help.tsx b/interface/src/app/main/Help.tsx
index 0fa7fe4c5..d7a06a431 100644
--- a/interface/src/app/main/Help.tsx
+++ b/interface/src/app/main/Help.tsx
@@ -51,20 +51,6 @@ const Help = () => {
}
});
- // const { send: sendExportAllValues } = useRequest(
- // () => callAction({ action: 'export', param: 'allvalues' }),
- // {
- // immediate: false
- // }
- // )
- // .onSuccess((event) => {
- // saveFile(event.data, 'allvalues', '.txt');
- // toast.info(LL.DOWNLOAD_SUCCESSFUL());
- // })
- // .onError((error) => {
- // toast.error(error.message);
- // });
-
const { send: sendAPI } = useRequest((data: APIcall) => API(data), {
immediate: false
})
@@ -165,16 +151,6 @@ const Help = () => {
- {/* }
- variant="outlined"
- color="primary"
- onClick={() => sendExportAllValues()}
- >
- {LL.DOWNLOAD(1)} {LL.ALLVALUES()}
- */}
-