From 95ca1b96196a4fba2f8381eb96b62691f9ce5afd Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sun, 24 May 2026 09:32:35 -0400 Subject: [PATCH] Use ClockIcon for Automations nav entry Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/fabro-web/app/layouts/app-shell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/fabro-web/app/layouts/app-shell.tsx b/apps/fabro-web/app/layouts/app-shell.tsx index 297e20f6d..b96628194 100644 --- a/apps/fabro-web/app/layouts/app-shell.tsx +++ b/apps/fabro-web/app/layouts/app-shell.tsx @@ -10,9 +10,9 @@ import { import { Bars3Icon, BeakerIcon, + ClockIcon, Cog6ToothIcon, PlayIcon, - SparklesIcon, XMarkIcon, } from "@heroicons/react/24/outline"; import { Link, Outlet, useLocation, useMatches } from "react-router"; @@ -24,7 +24,7 @@ import { useToggleDemoMode } from "../lib/mutations"; import { useAuthMe } from "../lib/queries"; const allNavigation = [ - { name: "Automations", href: "/automations", icon: SparklesIcon, demoOnly: true }, + { name: "Automations", href: "/automations", icon: ClockIcon, demoOnly: true }, { name: "Runs", href: "/runs", icon: PlayIcon, demoOnly: false }, { name: "Settings", href: "/settings", icon: Cog6ToothIcon, demoOnly: false }, ];