From 96c4639bdfdd99757c1b1a8bc62d3f2706c2e9ba Mon Sep 17 00:00:00 2001 From: ciregenz Date: Tue, 28 Jul 2026 18:52:11 -0700 Subject: [PATCH] [eric] composer: placeholder is 'Ask me to do anything...' (dropped the 'sir' bit) --- frontend/src/app/pages/Dashboard/DashboardToolbar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx b/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx index 32d16edd..ba36c4de 100644 --- a/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx +++ b/frontend/src/app/pages/Dashboard/DashboardToolbar.tsx @@ -98,7 +98,7 @@ const DashboardToolbar = React.forwardRef( }, [settingsLoaded, defaultMode, defaultModel, defaultThinkingLevel]); // Ghost-text predictions: what the user might type next, in their own voice. Fetched once per app // load (cached), then one is shown at a time and cycled while the composer sits idle+empty. Empty - // list (no signal / no provider / error) just leaves the static "What should I do sir..." placeholder. + // list (no signal / no provider / error) just leaves the static "Ask me to do anything..." placeholder. const [ghostList, setGhostList] = useState([]); const ghostFetchedRef = useRef(false); useEffect(() => { @@ -443,7 +443,7 @@ const DashboardToolbar = React.forwardRef( thinkingLevel={thinkingLevel} onThinkingLevelChange={handleThinkingLevelChange} prefillPrompt={prefillPrompt} - placeholderOverride="What should I do sir..." + placeholderOverride="Ask me to do anything..." ghostSuggestion={ghostSuggestion} />