diff --git a/.changeset/fn-6080-removal.md b/.changeset/fn-6080-removal.md new file mode 100644 index 0000000000..395dcd24aa --- /dev/null +++ b/.changeset/fn-6080-removal.md @@ -0,0 +1,5 @@ +--- +"@runfusion/fusion": patch +--- + +Removed the `collapsible`, `collapseStorageKey`, and `collapsedLabel` props from `WorkflowSelector`. Callers should stop passing these props; workflow selectors now always render expanded. diff --git a/packages/dashboard/app/components/InlineCreateCard.tsx b/packages/dashboard/app/components/InlineCreateCard.tsx index d6365c6e3a..c37923066c 100644 --- a/packages/dashboard/app/components/InlineCreateCard.tsx +++ b/packages/dashboard/app/components/InlineCreateCard.tsx @@ -18,7 +18,6 @@ import { WorkflowSelector } from "./WorkflowSelector"; const ALLOWED_IMAGE_TYPES = ["image/png", "image/jpeg", "image/gif", "image/webp"]; const STORAGE_KEY = "kb-inline-create-text"; -const WORKFLOW_SELECTOR_COLLAPSE_STORAGE_KEY = "kb-board-workflow-selector-collapsed"; interface PendingImage { file: File; @@ -1037,8 +1036,6 @@ export function InlineCreateCard({ addToast={addToast} label="Workflow" disabled={submitting} - collapsible - collapseStorageKey={WORKFLOW_SELECTOR_COLLAPSE_STORAGE_KEY} />