Disable download block (#1212)

This commit is contained in:
Shuchang Zheng
2024-11-18 07:22:45 -08:00
committed by GitHub
parent 7120ef42a0
commit 3d6c1dd60c

View File

@@ -2,7 +2,6 @@ import { useWorkflowPanelStore } from "@/store/WorkflowPanelStore";
import { import {
Cross2Icon, Cross2Icon,
CursorTextIcon, CursorTextIcon,
DownloadIcon,
EnvelopeClosedIcon, EnvelopeClosedIcon,
FileIcon, FileIcon,
ListBulletIcon, ListBulletIcon,
@@ -56,12 +55,13 @@ const nodeLibraryItems: Array<{
title: "File Parser Block", title: "File Parser Block",
description: "Downloads and parses a file", description: "Downloads and parses a file",
}, },
{ // disabled
nodeType: "download", // {
icon: <DownloadIcon className="h-6 w-6" />, // nodeType: "download",
title: "Download Block", // icon: <DownloadIcon className="h-6 w-6" />,
description: "Downloads a file from S3", // title: "Download Block",
}, // description: "Downloads a file from S3",
// },
{ {
nodeType: "upload", nodeType: "upload",
icon: <UploadIcon className="h-6 w-6" />, icon: <UploadIcon className="h-6 w-6" />,