diff --git a/frontend/src/data/useTranslatedToolRegistry.tsx b/frontend/src/data/useTranslatedToolRegistry.tsx
index 5f6460217..7be8431df 100644
--- a/frontend/src/data/useTranslatedToolRegistry.tsx
+++ b/frontend/src/data/useTranslatedToolRegistry.tsx
@@ -10,6 +10,7 @@ import ChangePermissions from '../tools/ChangePermissions';
import RemovePassword from '../tools/RemovePassword';
import { SubcategoryId, ToolCategory, ToolRegistry } from './toolsTaxonomy';
import AddWatermark from '../tools/AddWatermark';
+import Automate from '../tools/Automate';
// Hook to get the translated tool registry
export function useFlatToolRegistry(): ToolRegistry {
@@ -335,11 +336,13 @@ export function useFlatToolRegistry(): ToolRegistry {
"automate": {
icon: automation,
name: t("home.automate.title", "Automate"),
- component: null,
+ component: Automate,
view: "format",
description: t("home.automate.desc", "Build multi-step workflows by chaining together PDF actions. Ideal for recurring tasks."),
category: ToolCategory.ADVANCED_TOOLS,
- subcategory: SubcategoryId.AUTOMATION
+ subcategory: SubcategoryId.AUTOMATION,
+ maxFiles: -1,
+ endpoints: ["handleData"]
},
"auto-rename-pdf-file": {
icon: match_word,